apps/bookmarks/templates/login.html 1.2 K 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
    <link rel="apple-touch-icon" sizes="180x180" href="/static/apple-touch-icon.png" />
10
    <link rel="icon" type="image/png" sizes="32x32" href="/static/favicon-32x32.png" />
11
    <link rel="icon" type="image/png" sizes="16x16" href="/static/favicon-16x16.png" />
12
    <link rel="manifest" href="/static/site.webmanifest" />
13
    <title>Bookmarks | Login</title>
14
  </head>
15
  <body>
16
    <div class="header">
17
      <a href="/" class="logo">BOOKMARKS</a>
18
    </div>
19
20
    {{if .Error}}
21
    <p class="error">{{.Error}}</p>
22
    {{end}}
23
24
    <form class="form" method="POST" action="/login">
25
      <div class="form-field">
26
        <label for="password">Password</label>
27
        <input type="password" id="password" name="password" required autofocus />
28
      </div>
29
      <div class="form-actions">
30
        <button type="submit">Login</button>
31
      </div>
32
    </form>
33
  </body>
34
</html>