aboutsummaryrefslogtreecommitdiff
path: root/themes/alps/login.html
blob: 6f7c3723a19d4f753d12f837258996240e185f4d (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
27
28
29
30
31
32
33
34
{{template "head.html" .}}

<main class="login">
  <section>
    <h1>Webmail Login</h1>

    <form method="post" action="/login">
      <div class="action-group">
        <label for="username">Username</label>
        <input type="text" name="username" id="username" autofocus />
      </div>

      <div class="action-group">
        <label for="password">Password</label>
        <input type="password" name="password" id="password" />
      </div>

      {{if .CanRememberMe}}
      <div class="action-group">
        <label for="remember-me" class="checkbox">
          <input type="checkbox" name="remember-me" id="remember-me" />
          Remember me
        </label>
      </div>
      {{end}}

      <div class="action-group">
        <button type="submit">Sign in</button>
      </div>
    </form>
  </section>
</main>

{{template "foot.html"}}