Compare commits

..

No commits in common. "0ac58d622bfa44cf9f3ce1a9de4150f149baa9b2" and "1c09b5020e312d3b0a6ea3bb56dc7e128d03a1ac" have entirely different histories.

5 changed files with 10 additions and 6 deletions

View File

@ -64,3 +64,7 @@ button {
#loggeduser { #loggeduser {
padding-top: 2% padding-top: 2%
} }
#errormessage {
padding-top: 2.5%;
}

View File

@ -28,7 +28,7 @@ a {
height: 540px; height: 540px;
margin-right: 0.3em; margin-right: 0.3em;
margin-left: -40%; margin-left: -40%;
margin-top: 5%; margin-top: auto;
margin-bottom: 20%; margin-bottom: 20%;
font-size: 250%; font-size: 250%;
text-align: center; text-align: center;
@ -44,18 +44,16 @@ a {
height: 53rem; height: 53rem;
margin-left: 0.3em; margin-left: 0.3em;
margin-right: -30%; margin-right: -30%;
margin-top: -8%;
border: none; border: none;
} }
.navigation-list { .navigation-list {
display: inline-flex; display: flex;
list-style-type: none; list-style-type: none;
flex-wrap: wrap; flex-wrap: wrap;
gap: 10px; gap: 10px;
justify-content: center; justify-content: center;
padding: 0; padding: 0;
margin-left: 5%;
} }
.buttons { .buttons {

View File

@ -32,6 +32,8 @@
<button type="button" id="logoutbutton" onclick="logout()">Logout</button> <button type="button" id="logoutbutton" onclick="logout()">Logout</button>
<div id="errormessage"></div>
<script src="../js/chat.js"></script> <script src="../js/chat.js"></script>
<script src="../js/logout.js"></script> <script src="../js/logout.js"></script>

View File

@ -13,7 +13,7 @@ async function logout() {
}, },
body: JSON.stringify(sendLogoutInfo), body: JSON.stringify(sendLogoutInfo),
}); });
printText('Logged out.') document.querySelector("#errormessage").innerHTML = 'Logged out.'
document.getElementById("logoutbutton").style.display = "none"; document.getElementById("logoutbutton").style.display = "none";
localStorage.removeItem('username') localStorage.removeItem('username')
username = null; username = null;

View File

@ -52,7 +52,7 @@ form.addEventListener("submit", async function (event) {
//CHECKS IF A USERNAME IS TAKEN //CHECKS IF A USERNAME IS TAKEN
async function isUnameTaken() { async function isUnameTaken() {
const response = await fetch(`/api/users/${uname}/`); const response = await fetch(`../api/users/${uname}/`);
const isTaken = await response.json(); const isTaken = await response.json();
//YES THIS IS CONFUSING I KNOW. //YES THIS IS CONFUSING I KNOW.