summary refs log tree commit diff stats
path: root/web/register.html
blob: d39e2cfcd2dd62296781745b79bfa40cf06058ac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Register &middot; Perseus</title>
    <link rel="stylesheet" href="https://andinus.nand.sh/static/style.css">
    <link rel="stylesheet" href="https://andinus.nand.sh/static/perseus/style.css">
    <link rel="icon" href="https://andinus.nand.sh/static/perseus/favicon.png" type="image/png">
  </head>
  <body>
    <div id="content">
      <h1 class="title">Perseus</h1>
      <p>
	Perseus is a simple link aggregation and discussion program.
	It is written in Go &amp; uses sqlite3 for storage.
      </p>
      <hr>{{ if .SafeList }}
      <ul>{{ range .SafeList }}
        <li>{{ . }}</li>{{ end }}
      </ul>{{end}} {{ if .List }}
      <ul>{{ range .List }}
        <li>{{ . }}</li>{{ end }}
      </ul>{{end}} {{ if .Error }}
      <ul class="error">{{ range .Error }}
        <li>{{ . }}</li>{{ end }}
      </ul>{{end}} {{ if .Success }}
      <ul class="success">{{ range .Success }}
        <li>{{ . }}</li>{{ end }}
      </ul>{{end}} {{ if .Notice }}
      <ul class="notice">{{ range .Notice }}
        <li>{{ . }}</li>{{ end }}
      </ul>{{end}}
      <form action="./register" method="post">
	<h4>Username</h4>
        <input type="text" name="username" required>
	<h4>Password</h4>
	<input type="password" name="password" required>
        <input type="submit" name="submit" value="Go!">
      </form>
    </div>
    <div id="postamble" class="status">
      <p class="postamble">
	<a href="https://andinus.nand.sh/">Andinus</a>
	&nbsp;/&nbsp;
	<a href="https://andinus.nand.sh/perseus">Perseus</a>
	<span style="float:right">
	  <a href="https://tildegit.org/andinus/perseus">
	    Source Code
	  </a>
	</span>
      </p>
    </div>
  </body>
</html>