This commit is contained in:
xfarrow 2023-10-18 15:36:43 +02:00
parent 55c2d889e8
commit 2e97d41697
2 changed files with 56 additions and 30 deletions

View File

@ -3,9 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<title>HTML5 Login Form with validation Example</title> <title>HTML5 Login Form with validation Example</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<link rel="stylesheet" href="../css/login-register.css"> <link rel="stylesheet" href="../css/login-register.css">
</head> </head>
<body> <body>
<!-- partial:index.partial.html --> <!-- partial:index.partial.html -->
@ -22,14 +20,42 @@
</p> </p>
<p> <p>
<input type="submit" id="login" value="Login"> <button type="button" onclick="login()">Login</button>
</p> </p>
</form> </form>
<div id="create-account-wrap"> <div id="create-account-wrap">
<p>Not a member? <a href="./register.html">Create Account</a><p> <p>Not a member? <a href="./register.html">Create Account</a><p>
</div><!--create-account-wrap--> </div>
</div><!--login-form-wrap--> </div>
<!-- partial -->
<script>
function login() {
const email = document.getElementById("email").value;
const password = document.getElementById("password").value;
if(!email || !password){
return;
}
const options = {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({ email, password }),
};
fetch('http://localhost:3000/blinkapi/login', options)
.then(response => {})
.then(data => {
document.cookie = `token=${data.token};`;
})
.catch(err => {
alert("An error has occurred :-( please try again later")
console.error(err);
});
}
</script>
</body> </body>
</html> </html>

View File

@ -63,7 +63,7 @@
} }
}) })
.catch(err => { .catch(err => {
alert("An error has occured :-( please try again later") alert("An error has occurred :-( please try again later")
console.error(err); console.error(err);
}); });
} }