blob: 04d043572b813648047e5e1abb0224624c03fa2b [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>Login</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 />
14 <input type="text" name="username" /><br />
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="Login" />
19 </form>
20</body>
21</html>
22