Adding password web password reset

This commit is contained in:
stephb9959
2021-07-10 12:37:03 -07:00
parent 69c69401d3
commit b2d75f2ab5
3 changed files with 50 additions and 0 deletions

14
wwwassets/404_error.html Normal file
View File

@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Generic 404 error</title>
</head>
<body>
<h1>Well, I don't know how you landed here...</h1>
<h2>You know computers sometimes go crazy... So we'll just assume one of them got fed up and refused to help you...</h2>
<h2>If you get this again, we need to know. We need to let that computer know that it's not ok not to help people.</h2>
<h2>Be sure to have a nice day and smile as much as you can.</h2>
</body>
</html>

View File

@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>EMail was successfully validated</title>
</head>
<body>
<h1>>EMail was successfully validated</h1>
<div>
<h3>ID</h3>
<b>${UUID}</b>
</div>
<div>
<h3>Thank you ${USERNAME} for validating your email.</h3>
</div>
</body>
</html>

View File

@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>EMail Verification Error</title>
</head>
<body>
<h1>Password reset failed...</h1>
<div>
<h3>ID</h3>
<b>${UUID}</b>
</div>
<div>
<h3>Error</h3>
<b>${ERROR_TEXT}</b>
</div>
</body>
</html>