aboutsummaryrefslogtreecommitdiff
path: root/src/templates/me.html
diff options
context:
space:
mode:
Diffstat (limited to 'src/templates/me.html')
-rw-r--r--src/templates/me.html27
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