Merge branch '4-account-recovery' into 'main'
Feat. Form default behaviour bypassed See merge request compsoc1/skynet/ldap/frontend!10
This commit is contained in:
commit
3c3649ccfe
10 changed files with 563 additions and 349 deletions
|
@ -8,16 +8,15 @@
|
|||
</head>
|
||||
<body>
|
||||
<div id="title">
|
||||
<a href="./"><img src="images/sharky_vector_svg.svg" alt="Picture of Sharky, the mascot of skynet" width="145"
|
||||
height="81.56"/> </a>
|
||||
<img src="images/sharky_vector_svg.svg" alt="Picture of Sharky, the mascot of skynet" width="145" height="81.56"/>
|
||||
<h1>Skynet Password Reset & Sign-up service</h1>
|
||||
</div>
|
||||
<div class="boxes">
|
||||
<h2><a href="./signup.html">Sign-up Page</a></h2>
|
||||
<p>Please use this if you have yet to activate an account on Skynet before.</p>
|
||||
<h2><a href="password.html">Change Password</a></h2>
|
||||
<h2><a href="./password.html">Change Password</a></h2>
|
||||
<p>Please use this service to change your skynet password</p>
|
||||
<h2><a href="modify.html">User modification</a></h2>
|
||||
<h2><a href="./modify.html">User modification</a></h2>
|
||||
<p>
|
||||
Please use this service to modify your user data (email, login ssh key, etc.)
|
||||
</p>
|
||||
|
@ -25,9 +24,13 @@
|
|||
<p>
|
||||
Please use this service to get a reminder email with your skynet username
|
||||
</p>
|
||||
<h2>
|
||||
<a href="./recovery/password.html">Forgot your password?</a>
|
||||
</h2>
|
||||
<p>
|
||||
Please use this service to reset your password.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<!--testing2-->
|
||||
<footer>
|
||||
UL Computer Society 2023-<span id="year">2023</span>
|
||||
</footer>
|
||||
|
|
74
src/recovery/password.html
Normal file
74
src/recovery/password.html
Normal file
|
@ -0,0 +1,74 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en-ie">
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>Account Recovery</title>
|
||||
<link rel="icon" type="image/png" href="../images/favicon/favicon-16x16.png"/>
|
||||
</head>
|
||||
<body>
|
||||
<form id="recovery">
|
||||
<label for="username">Username</label>
|
||||
<input type="text" id="username" name="username"/>
|
||||
<p>Or</p>
|
||||
<label for="email">Email</label>
|
||||
<input type="text" id="email" name="email"/>
|
||||
<br/>
|
||||
<br/>
|
||||
<input type="submit" value="submit"/>
|
||||
</form>
|
||||
<p id="formStatus"></p>
|
||||
<footer>
|
||||
UL Computer Society 2023-<span id="year">2023</span>
|
||||
</footer>
|
||||
<script>
|
||||
const formEl = document.getElementById('recovery');
|
||||
formEl.addEventListener('submit', formHandler);
|
||||
|
||||
async function formHandler(listener) {
|
||||
listener.preventDefault();
|
||||
|
||||
// reset teh form status
|
||||
document.getElementById('formStatus').innerHTML = "";
|
||||
|
||||
const formData = new FormData(formEl);
|
||||
const username = formData.get('username').trim();
|
||||
const email = formData.get('email').trim();
|
||||
|
||||
if (username.length === 0 && email.length === 0) {
|
||||
document.getElementById('formStatus').innerHTML = "<span style='background-color: red; color: white'>Please enter username or email</span>";
|
||||
return;
|
||||
}
|
||||
|
||||
let to_send = {
|
||||
email: email
|
||||
};
|
||||
|
||||
// assuming username is not empty it is the preferred method
|
||||
if (username.length > 0) {
|
||||
to_send = {user: username};
|
||||
}
|
||||
|
||||
let url = "https://api.account.skynet.ie/ldap/recover/password";
|
||||
|
||||
try {
|
||||
let req = await fetch(url, {
|
||||
method: 'POST',
|
||||
body: JSON.stringify(to_send),
|
||||
mode: "cors"
|
||||
});
|
||||
|
||||
if (req.status === 200) {
|
||||
document.getElementById('formStatus').innerHTML = "<span style='background-color: green; color: white'>Success Please check emails</span>";
|
||||
} else {
|
||||
document.getElementById('formStatus').innerHTML = "<span style='background-color: red; color: white'>Failure: Failed to communicate to server</span>";
|
||||
}
|
||||
} catch (e) {
|
||||
document.getElementById('formStatus').innerHTML = `<span style='background-color: red; color: white'>Error: ${e}</span>`;
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
<script>
|
||||
document.getElementById('year').textContent = new Date().getFullYear().toString()
|
||||
</script>
|
||||
</html>
|
73
src/recovery/password_reset.html
Normal file
73
src/recovery/password_reset.html
Normal file
|
@ -0,0 +1,73 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Password recovery</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Password Recovery</h1>
|
||||
<p>Please enter a new password for your skynet account below</p>
|
||||
<form id="reset">
|
||||
<label for="pass1">Password</label>
|
||||
<input type="password" id="pass1" name="password"/> <br/>
|
||||
<label for="pass2">Confirm</label>
|
||||
<input type="password" id="pass2" name="confirm"/> <br/>
|
||||
<input type="submit"/>
|
||||
</form>
|
||||
<p id="formStatus"></p>
|
||||
<footer>
|
||||
UL Computer Society 2023-<span id="year">2023</span>
|
||||
</footer>
|
||||
<script>
|
||||
document.getElementById('year').textContent = new Date().getFullYear().toString()
|
||||
</script>
|
||||
<script>
|
||||
const formEl = document.getElementById("reset");
|
||||
formEl.addEventListener('submit', (listener) => formHandler(listener));
|
||||
const url = new URL(window.location.href);
|
||||
const urlParam = new URLSearchParams(url.search);
|
||||
const auth = urlParam.get("auth");
|
||||
|
||||
async function formHandler(listener) {
|
||||
listener.preventDefault();
|
||||
|
||||
// reset
|
||||
document.getElementById('formStatus').innerHTML = "";
|
||||
|
||||
const formData = new FormData(formEl);
|
||||
const pass = formData.get("password");
|
||||
const confirm = formData.get("confirm");
|
||||
|
||||
if (pass !== confirm) {
|
||||
document.getElementById('formStatus').innerHTML = "<span style='background-color: red; color: white'>Failure: Passwords don't match</span>";
|
||||
return;
|
||||
}
|
||||
|
||||
let url = "https://api.account.skynet.ie/ldap/recover/password/auth";
|
||||
let req;
|
||||
try {
|
||||
req = await fetch(url, {
|
||||
method: 'POST',
|
||||
body: JSON.stringify({auth: auth, pass: pass}),
|
||||
mode: "cors"
|
||||
});
|
||||
} catch (e) {
|
||||
document.getElementById('formStatus').innerHTML = `<span style='background-color: red; color: white'>${e}</span>`;
|
||||
return;
|
||||
}
|
||||
|
||||
if (req.status !== 200) {
|
||||
document.getElementById('formStatus').innerHTML = "<span style='background-color: red; color: white'>Failure</span>";
|
||||
return;
|
||||
}
|
||||
|
||||
let data = req.json();
|
||||
if (data.result === 'error') {
|
||||
document.getElementById('formStatus').innerHTML = `<span style='background-color: red; color: white'>${data.error}</span>`;
|
||||
} else {
|
||||
document.getElementById('formStatus').innerHTML = "<span style='background-color: green; color: white'>Success</span>";
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
64
src/recovery/ssh-request.html
Normal file
64
src/recovery/ssh-request.html
Normal file
|
@ -0,0 +1,64 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>SSH key recovery</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>SSH key recovery</h1>
|
||||
<form id="form">
|
||||
<label for="user">Username</label>
|
||||
<input type="text" id="user" name="user"/> <br/>
|
||||
<label for="mail">Email</label>
|
||||
<input type="email" id="mail" name="mail"/> <br/>
|
||||
<input type="submit"/>
|
||||
</form>
|
||||
<p id="formStatus"></p>
|
||||
<footer>
|
||||
UL Computer Society 2023-<span id="year">2023</span>
|
||||
</footer>
|
||||
<script>
|
||||
document.getElementById('year').textContent = new Date().getFullYear().toString()
|
||||
</script>
|
||||
<script>
|
||||
const formEl = document.getElementById("form");
|
||||
formEl.addEventListener('submit', formHandler);
|
||||
|
||||
function formHandler(listener) {
|
||||
listener.preventDefault();
|
||||
const formData = new FormData(formEl);
|
||||
const object = {user: formData.get('user'), email: formData.get('mail')};
|
||||
fetch('https://api.account.skynet.ie/ldap/recover/ssh/request', {
|
||||
method: 'POST',
|
||||
body: JSON.stringify(object),
|
||||
mode: "cors"
|
||||
})
|
||||
.then(status)
|
||||
.then(json)
|
||||
.catch(() => {
|
||||
document.getElementById('formStatus').innerHTML = "<span style='background-color: yellow; color: black'>Please try again</span>";
|
||||
});
|
||||
}
|
||||
|
||||
function status(res) {
|
||||
if (res.status === 200) {
|
||||
return res.json();
|
||||
} else if (res.status === 500) {
|
||||
document.getElementById('formStatus').innerHTML = "<span style='background-color: red; color: white'>Failure</span>";
|
||||
} else {
|
||||
document.getElementById('formStatus').innerHTML = "<span style='background-color: red; color: white'>Failure: Failed to communicate to server</span>";
|
||||
}
|
||||
}
|
||||
|
||||
function json(temp) {
|
||||
if (temp) {
|
||||
if (temp.result === 'error') {
|
||||
document.getElementById('formStatus').innerHTML = `<span style='background-color: red; color: white'>${temp.error}</span>`;
|
||||
} else {
|
||||
document.getElementById('formStatus').innerHTML = "<span style='background-color: green; color: white'>Success</span>";
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in a new issue