templates/new_password.html (view raw)
1<!DOCTYPE html>
2<html lang="en">
3
4<head>
5 <meta charset="UTF-8">
6 <meta name="viewport" content="width=device-width, initial-scale=1.0">
7 <title>Reset password</title>
8 <link rel="stylesheet" href="https://cdn.simplecss.org/simple.min.css">
9 <link rel="stylesheet" href="/static/style.css">
10</head>
11
12<body>
13 <h1>Reset password</h1>
14 <form method="post">
15 <label>
16 <span>New password:</span>
17 <input type="password" name="password" placeholder="Max 56 chars, ASCII only" required>
18 </label>
19 <input type="submit" value="Reset password">
20 </form>
21</body>
22
23</html>