Compare commits
4 Commits
1c09b5020e
...
0ac58d622b
Author | SHA1 | Date |
---|---|---|
Luna | 0ac58d622b | |
Luna | f3b2ca64ff | |
Luna | 4db3d71f68 | |
Luna | 5b80b2a819 |
|
@ -63,8 +63,4 @@ button {
|
|||
|
||||
#loggeduser {
|
||||
padding-top: 2%
|
||||
}
|
||||
|
||||
#errormessage {
|
||||
padding-top: 2.5%;
|
||||
}
|
|
@ -28,7 +28,7 @@ a {
|
|||
height: 540px;
|
||||
margin-right: 0.3em;
|
||||
margin-left: -40%;
|
||||
margin-top: auto;
|
||||
margin-top: 5%;
|
||||
margin-bottom: 20%;
|
||||
font-size: 250%;
|
||||
text-align: center;
|
||||
|
@ -44,16 +44,18 @@ a {
|
|||
height: 53rem;
|
||||
margin-left: 0.3em;
|
||||
margin-right: -30%;
|
||||
margin-top: -8%;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.navigation-list {
|
||||
display: flex;
|
||||
display: inline-flex;
|
||||
list-style-type: none;
|
||||
flex-wrap: wrap;
|
||||
gap: 10px;
|
||||
justify-content: center;
|
||||
padding: 0;
|
||||
margin-left: 5%;
|
||||
}
|
||||
|
||||
.buttons {
|
||||
|
|
|
@ -31,8 +31,6 @@
|
|||
<div id="loggeduser"></div>
|
||||
|
||||
<button type="button" id="logoutbutton" onclick="logout()">Logout</button>
|
||||
|
||||
<div id="errormessage"></div>
|
||||
|
||||
<script src="../js/chat.js"></script>
|
||||
<script src="../js/logout.js"></script>
|
||||
|
|
|
@ -13,7 +13,7 @@ async function logout() {
|
|||
},
|
||||
body: JSON.stringify(sendLogoutInfo),
|
||||
});
|
||||
document.querySelector("#errormessage").innerHTML = 'Logged out.'
|
||||
printText('Logged out.')
|
||||
document.getElementById("logoutbutton").style.display = "none";
|
||||
localStorage.removeItem('username')
|
||||
username = null;
|
||||
|
|
|
@ -52,7 +52,7 @@ form.addEventListener("submit", async function (event) {
|
|||
//CHECKS IF A USERNAME IS TAKEN
|
||||
async function isUnameTaken() {
|
||||
|
||||
const response = await fetch(`../api/users/${uname}/`);
|
||||
const response = await fetch(`/api/users/${uname}/`);
|
||||
const isTaken = await response.json();
|
||||
|
||||
//YES THIS IS CONFUSING I KNOW.
|
||||
|
|
Loading…
Reference in New Issue