summaryrefslogtreecommitdiff
path: root/pkg/webui/html/login.html
blob: 0c2a16724036911a9ca8a12468e01516279c36d8 (plain)
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
27
28
29
{{ define "main" }}
{{ if .Forbidden }}
<article>
  <p class="error-message">Invalid username or password</p>
</article>
{{ end }}
<form action="/login" method="post">
  <fieldset>
	<label>
      Username
	  <input type="text"
             placeholder="Username"
             name="username"
             value="{{ .Username }}"
             {{ if .Forbidden }}aria-invalid="true"{{ end }}
             required>
    </label>
	<label>
      Password
      <input type="password"
             placeholder="Password"
             name="password"
             {{ if .Forbidden }}aria-invalid="true"{{ end }}
             required>
    </label>
  </fieldset>
  <button type="submit" value="login">Login</button>
</form>
{{ end }}