apps/feeds/templates/login.html 1.0 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>Feeds | Login</title>
14
  </head>
15
  <body>
16
    <a href="/" class="header"><h1>FEEDS</h1></a>
17
    {{if .Error}}<p class="error">{{.Error}}</p>{{end}}
18
    <form class="admin-form" method="POST" action="/admin/login">
19
      <label for="password">Password</label>
20
      <input type="password" id="password" name="password" required autofocus />
21
      <button type="submit">Login</button>
22
    </form>
23
  </body>
24
</html>