This commit is contained in:
Ulises Gascón
2024-02-07 12:29:54 +01:00
committed by Ulises Gascon
parent 91ba1f5054
commit 9dd233c371
143 changed files with 68070 additions and 1 deletions
+76
View File
@@ -0,0 +1,76 @@
const locationPath = window.location.pathname
let accessToken = localStorage.getItem('accessToken')
if(accessToken) {
localStorage.removeItem('accessToken')
accessToken = null
}
if(locationPath === '/login'){
const login = document.getElementById('login');
login.addEventListener('submit', (event) => {
event.preventDefault();
const username = event.target.username.value;
const password = event.target.password.value;
fetch('/login', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
username,
password
})
})
.then(response => {
if(response.status !== 200) {
throw new Error("Invalid credentials")
}
return response.json()
})
.then(({accessToken}) => {
localStorage.setItem('accessToken', accessToken);
window.location.href = '/';
})
.catch(error => {
alert(error);
})
});
}
if(locationPath === '/signup'){
const sigupForm = document.getElementById('sigup');
sigupForm.addEventListener('submit', (event) => {
event.preventDefault();
const username = event.target.username.value;
const email = event.target.email.value;
const password = event.target.password.value;
fetch('/signup', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
username,
email,
password
})
})
.then(response => {
if(response.status !== 200) {
throw new Error("Error while registering the user")
}
return response.json()
})
.then(({accessToken}) => {
localStorage.setItem('accessToken', accessToken);
window.location.href = '/';
})
.catch(error => {
alert(error);
})
});
}