| giolekva | 603e73a | 2021-10-22 14:46:45 +0400 | [diff] [blame] | 1 | <!DOCTYPE html> |
| 2 | <html lang="en"> |
| 3 | <head> |
| 4 | <meta charset="utf-8" /> |
| 5 | <title>Create New Account</title> |
| 6 | </head> |
| 7 | <body> |
| 8 | <a href="/">whoami</a> |
| 9 | <a href="/login">login</a> |
| 10 | <a href="/logout">logout</a> |
| 11 | <a href="/registration">registration</a><br/> |
| 12 | <form action="" method="POST"> |
| 13 | <label for="username">Username:</label><br /> |
| giolekva | 788dc6e | 2021-10-25 20:40:53 +0400 | [diff] [blame] | 14 | <input type="text" name="username" autofocus /><br /> |
| giolekva | 603e73a | 2021-10-22 14:46:45 +0400 | [diff] [blame] | 15 | <label for="password">Password:</label><br /> |
| 16 | <input type="password" name="password" /><br /> |
| 17 | <input type="hidden" name="csrf_token" value="{{.}}" /><br /> |
| 18 | <input type="submit" value="Create New Account" /> |
| 19 | </form> |
| 20 | </body> |
| 21 | </html> |
| 22 | |