Compare commits
4 Commits
1c09b5020e
...
0ac58d622b
Author | SHA1 | Date |
---|---|---|
Luna | 0ac58d622b | |
Luna | f3b2ca64ff | |
Luna | 4db3d71f68 | |
Luna | 5b80b2a819 |
|
@ -63,8 +63,4 @@ button {
|
||||||
|
|
||||||
#loggeduser {
|
#loggeduser {
|
||||||
padding-top: 2%
|
padding-top: 2%
|
||||||
}
|
|
||||||
|
|
||||||
#errormessage {
|
|
||||||
padding-top: 2.5%;
|
|
||||||
}
|
}
|
|
@ -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: auto;
|
margin-top: 5%;
|
||||||
margin-bottom: 20%;
|
margin-bottom: 20%;
|
||||||
font-size: 250%;
|
font-size: 250%;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
@ -44,16 +44,18 @@ 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: flex;
|
display: inline-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 {
|
||||||
|
|
|
@ -31,8 +31,6 @@
|
||||||
<div id="loggeduser"></div>
|
<div id="loggeduser"></div>
|
||||||
|
|
||||||
<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>
|
||||||
|
|
|
@ -13,7 +13,7 @@ async function logout() {
|
||||||
},
|
},
|
||||||
body: JSON.stringify(sendLogoutInfo),
|
body: JSON.stringify(sendLogoutInfo),
|
||||||
});
|
});
|
||||||
document.querySelector("#errormessage").innerHTML = 'Logged out.'
|
printText('Logged out.')
|
||||||
document.getElementById("logoutbutton").style.display = "none";
|
document.getElementById("logoutbutton").style.display = "none";
|
||||||
localStorage.removeItem('username')
|
localStorage.removeItem('username')
|
||||||
username = null;
|
username = null;
|
||||||
|
|
|
@ -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.
|
||||||
|
|
Loading…
Reference in New Issue