blob: 1ed3d403c9f2f0f48c56d9554caafdd8ac683ba0 [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 />
Giorgi Lekveishvilid76414e2023-12-21 13:30:23 +04006 <input type="hidden" name="csrf_token" value="{{ .csrfToken }}" />
Giorgi Lekveishvili58cb1482023-12-04 12:33:49 +04007 <button type="submit">Sign In</button>
8</form>
Giorgi Lekveishvilid76414e2023-12-21 13:30:23 +04009{{- if .enableRegistration -}}
Giorgi Lekveishvili58cb1482023-12-04 12:33:49 +040010<nav>
11 <ul>
12 <li>
13 <a href="/register">Create Account</a>
14 </li>
15 </ul>
16</nav>
Giorgi Lekveishvilid76414e2023-12-21 13:30:23 +040017{{- end -}}
Giorgi Lekveishvili58cb1482023-12-04 12:33:49 +040018{{ end }}