apps/cellar/templates/login.html 802 B raw
1
{{define "login.html"}}<!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>Cellar</title>
7
  <meta name="theme-color" content="#121113" />
8
  <link rel="stylesheet" href="/assets/darkmatter.css">
9
  <link rel="stylesheet" href="/static/styles.css">
10
</head>
11
<body>
12
  <header class="header">
13
    <span class="logo">CELLAR</span>
14
  </header>
15
  <main>
16
    {{if .Error}}<p class="error">{{.Error}}</p>{{end}}
17
    <form method="POST" action="/admin/login{{if .Next}}?next={{.Next}}{{end}}" class="form">
18
      <label for="password">password</label>
19
      <input type="password" id="password" name="password" autofocus required>
20
      <button type="submit">login</button>
21
    </form>
22
  </main>
23
</body>
24
</html>{{end}}