diff options
author | Andinus <andinus@nand.sh> | 2020-03-27 21:20:12 +0530 |
---|---|---|
committer | Andinus <andinus@nand.sh> | 2020-03-27 21:20:12 +0530 |
commit | 3dee7955670274b92ad8b3931e6c36995f1ee418 (patch) | |
tree | c312153b27a2e6e32e900112978696c7aae312b8 /web/register.html | |
parent | 97f36a08c7a5e3bd7921a26af89eee8ad9b3e3d7 (diff) | |
download | perseus-3dee7955670274b92ad8b3931e6c36995f1ee418.tar.gz |
Add registration handler
Diffstat (limited to 'web/register.html')
-rw-r--r-- | web/register.html | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/web/register.html b/web/register.html new file mode 100644 index 0000000..d39e2cf --- /dev/null +++ b/web/register.html @@ -0,0 +1,55 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <title>Register · 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 & 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> + / + <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> |