blob: 9d3c0fd18c0fbb30c25e9ea913f1fac107844428 [file] [log] [blame]
giolekva603e73a2021-10-22 14:46:45 +04001<!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 />
giolekva788dc6e2021-10-25 20:40:53 +040014 <input type="text" name="username" autofocus /><br />
giolekva603e73a2021-10-22 14:46:45 +040015 <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