apps/jotts/templates/login.html 1.3 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
    <title>Jotts</title>
7
    <link rel="apple-touch-icon" sizes="180x180" href="/static/apple-touch-icon.png">
8
    <link rel="icon" type="image/png" sizes="32x32" href="/static/favicon-32x32.png">
9
    <link rel="icon" type="image/png" sizes="16x16" href="/static/favicon-16x16.png">
10
    <link rel="manifest" href="/static/site.webmanifest">
11
    <link rel="icon" href="/static/favicon.ico">
12
    <meta property="og:title" content="Jotts">
13
    <meta property="og:image" content="/static/og.png">
14
    <meta property="og:type" content="website">
15
    <meta name="theme-color" content="#121113" />
16
    <link rel="stylesheet" href="/assets/darkmatter.css">
17
    <link rel="stylesheet" href="/static/styles.css">
18
  </head>
19
  <body>
20
    <header class="header">
21
      <span class="logo">JOTTS</span>
22
    </header>
23
    <main>
24
      {{if .Error}}<p class="error">{{.Error}}</p>{{end}}
25
      <form method="POST" action="/login" class="form">
26
        <label for="password">password</label>
27
        <input type="password" id="password" name="password" autofocus required>
28
        <button type="submit">login</button>
29
      </form>
30
    </main>
31
  </body>
32
</html>