blob: 49f392baa6851acadeeb0c74c5e711c34b9c2617 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
{{- define "head"}}
<title>Login</title>
{{- end}}
{{- define "body"}}
<section>
{{- if .Error}}
<p class="login-error"><img class="inline" src="/static/angry.webp">Incorrect password</p>
{{- end}}
<form class="password-form" method="post">
<table>
<tr class="password-form-row">
<td><label class="password-label" for="password">Enter password</label></td>
<td><input id="password" class="password" type="password" name="password" autofocus></td>
</tr>
<tr class="password-form-row">
<td><label class="password-label" for="auth">Google authenticator code</label></td>
<td><input id="auth" class="password" name="auth"></td>
</tr>
<tr>
<td></td>
<td><input type="image" width="100" class="submit" src="/static/point.webp" alt="Submit"></td>
</table>
</form>
</section>
{{- end}}
|