Stephan Richter
3 months ago
10 changed files with 155 additions and 26 deletions
@ -0,0 +1,53 @@ |
|||||||
|
<html> |
||||||
|
<head> |
||||||
|
<meta charset="utf-8"> |
||||||
|
<title>Light OIDC</title> |
||||||
|
<script src="scripts/common.js"></script> |
||||||
|
<script src="scripts/reset.js"></script> |
||||||
|
<link rel="stylesheet" href="style.css" /> |
||||||
|
</head> |
||||||
|
<body> |
||||||
|
<nav></nav> |
||||||
|
<div id="content"> |
||||||
|
<h1>Reset password</h1> |
||||||
|
<div>Welcome! You may now reset your password!</div> |
||||||
|
<form> |
||||||
|
<fieldset> |
||||||
|
<legend> |
||||||
|
Password |
||||||
|
</legend> |
||||||
|
<table> |
||||||
|
<tr> |
||||||
|
<th>New Password</th> |
||||||
|
<td><input id="newpass1" type="password"></td> |
||||||
|
</tr> |
||||||
|
<tr> |
||||||
|
<th>Repeat Password</th> |
||||||
|
<td><input id="newpass2" type="password" onkeydown="passKeyDown()"></td> |
||||||
|
</tr> |
||||||
|
<tr id="password_mismatch" style="display: none"> |
||||||
|
<th>Error</th> |
||||||
|
<td class="warning">Mismatch between new password and repetition!</td> |
||||||
|
</tr> |
||||||
|
<tr id="weak_password" style="display: none"> |
||||||
|
<th>Error</th> |
||||||
|
<td class="warning">Your password is too weak!</td> |
||||||
|
</tr> |
||||||
|
<tr id="missing_token" style="display: none"> |
||||||
|
<th>Error</th> |
||||||
|
<td class="warning">Access token missing!</td> |
||||||
|
</tr> |
||||||
|
<tr id="invalid_token" style="display: none"> |
||||||
|
<th>Error</th> |
||||||
|
<td class="warning">I received an access token, but it is invalid!</td> |
||||||
|
</tr> |
||||||
|
<tr> |
||||||
|
<td></td> |
||||||
|
<td><button id="passBtn" type="button" onClick="updatePass()">Update</button></td> |
||||||
|
</tr> |
||||||
|
</table> |
||||||
|
</fieldset> |
||||||
|
</form> |
||||||
|
</div> |
||||||
|
</body> |
||||||
|
</html> |
@ -0,0 +1,53 @@ |
|||||||
|
const urlParams = new URLSearchParams(window.location.search); |
||||||
|
const token = urlParams.get('token'); |
||||||
|
|
||||||
|
async function handlePasswordResponse(response){ |
||||||
|
if (response.ok){ |
||||||
|
console.log(response); |
||||||
|
setText('passBtn', 'saved.'); |
||||||
|
if (response.redirected){ |
||||||
|
redirect(response.url); |
||||||
|
} |
||||||
|
} else { |
||||||
|
setText('passBtn', 'Update failed!'); |
||||||
|
var text = await response.text(); |
||||||
|
if (text == 'invalid token') show('invalid_token'); |
||||||
|
if (text == 'token missing') show('missing_token'); |
||||||
|
if (text == 'password mismatch') show('password_mismatch'); |
||||||
|
if (text == 'weak password') show('weak_password'); |
||||||
|
} |
||||||
|
enable('passBtn'); |
||||||
|
setTimeout(function(){ |
||||||
|
setText('passBtn','Update'); |
||||||
|
},10000); |
||||||
|
} |
||||||
|
|
||||||
|
function passKeyDown(ev){ |
||||||
|
if (event.keyCode == 13) updatePass(); |
||||||
|
} |
||||||
|
|
||||||
|
function updatePass(){ |
||||||
|
disable('passBtn'); |
||||||
|
hide('missing_token'); |
||||||
|
hide('invalid_token'); |
||||||
|
hide('password_mismatch'); |
||||||
|
hide('weak_password'); |
||||||
|
var newData = { |
||||||
|
newpass : [getValue('newpass1'),getValue('newpass2')], |
||||||
|
token : token |
||||||
|
} |
||||||
|
fetch(user_controller+'/reset',{ |
||||||
|
method : 'POST', |
||||||
|
headers : { |
||||||
|
'Content-Type': 'application/json' |
||||||
|
}, |
||||||
|
body : JSON.stringify(newData) |
||||||
|
}).then(handlePasswordResponse); |
||||||
|
setText('passBtn','sent…'); |
||||||
|
} |
||||||
|
|
||||||
|
function missingToken(){ |
||||||
|
show('missing_token'); |
||||||
|
disable('passBtn'); |
||||||
|
} |
||||||
|
if (!token) setTimeout(missingToken,100); |
Loading…
Reference in new issue