apps/habbits/templates/login.html 852 B raw
1
<!doctype html>
2
<html lang="en">
3
  <head>
4
    <meta charset="UTF-8" />
5
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
    <meta name="theme-color" content="#121113" />
7
    <link rel="stylesheet" href="/assets/darkmatter.css" />
8
    <link rel="stylesheet" href="/static/styles.css" />
9
    <title>Habbits | Login</title>
10
  </head>
11
  <body>
12
    <div class="header">
13
      <a href="/" class="logo">HABBITS</a>
14
    </div>
15
    {{if .Error}}<p class="error">{{.Error}}</p>{{end}}
16
    <form class="form" method="POST" action="/login">
17
      <div class="form-field">
18
        <label for="password">Password</label>
19
        <input type="password" id="password" name="password" required autofocus />
20
      </div>
21
      <div class="form-actions">
22
        <button type="submit">Login</button>
23
      </div>
24
    </form>
25
  </body>
26
</html>