diff options
author | Mark Powers <markppowers0@gmail.com> | 2020-10-20 12:17:57 -0500 |
---|---|---|
committer | Mark Powers <markppowers0@gmail.com> | 2020-10-20 12:17:57 -0500 |
commit | 20deceae4de9779b3bfafa9c8b8811c403bfbc6e (patch) | |
tree | 2cc9a8fbb26cecd468813abf7ced741ef746c92f /src/templates/me.html | |
parent | e0a4d1bb1339e80775aa37efaf8cac314278f8e9 (diff) |
Add me page
Diffstat (limited to 'src/templates/me.html')
-rw-r--r-- | src/templates/me.html | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/templates/me.html b/src/templates/me.html new file mode 100644 index 0000000..77b5ed4 --- /dev/null +++ b/src/templates/me.html @@ -0,0 +1,27 @@ +<!doctype html> +<html lang="en"> + +<head> + <title>About</title> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> + <link rel="stylesheet" type="text/css" href="static/styles.css"> +</head> + +<body> + <div class="main"> + <h1>{{name}}</h1> + + {{message}} + <h2>Reset Password</h2> + <form method="post" action="/password"> + <input type="password" placeholder="Old Password" name="old" required> + <input type="password" placeholder="New Password" name="new1" required> + <input type="password" placeholder="New Password (again)" name="new2" required> + <input type="submit" value="Reset"> + </form> + </div> + {{> navigation}} +</body> + +</html>
\ No newline at end of file |