aboutsummaryrefslogtreecommitdiff
path: root/src/ui/pages/user/login.tmpl.html
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/pages/user/login.tmpl.html')
-rw-r--r--src/ui/pages/user/login.tmpl.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/ui/pages/user/login.tmpl.html b/src/ui/pages/user/login.tmpl.html
new file mode 100644
index 0000000..e091322
--- /dev/null
+++ b/src/ui/pages/user/login.tmpl.html
@@ -0,0 +1,16 @@
+{{define "title"}}Login{{end}}
+
+{{define "main"}}
+ <h1>Login</h1>
+ <form action="/u/auth" method="POST">
+ <label>
+ Username
+ <input type="text" placeholder="username" name="username" />
+ </label>
+ <label>
+ Secret
+ <input type="password" placeholder="psspsspsspss" name="secret" />
+ </label>
+ <button type="submit">Login</button>
+ </form>
+{{end}}