blob: f01f157bc03ac7c9d95ef0e26c3c7273e73f3b7a [file] [log] [blame]
Giorgi Lekveishvili58cb1482023-12-04 12:33:49 +04001{{ define "title" }}Sign in{{ end }}
2{{ define "main" }}
3<form action="" method="POST">
4 <input type="text" name="username" placeholder="Username" autofocus required />
5 <input type="password" name="password" placeholder="Password" required />
6 <input type="hidden" name="csrf_token" value="{{ . }}" />
7 <button type="submit">Sign In</button>
8</form>
9<nav>
10 <ul>
11 <li>
12 <a href="/register">Create Account</a>
13 </li>
14 </ul>
15</nav>
16{{ end }}