blob: 2bcd397c54bd391494b83ab97ed4c3a0555bbdbb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<!doctype html>
<html lang="en">
<head>
<title>About</title>
<meta charset="UTF-8">
{{> styles}}
</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>
|