summaryrefslogtreecommitdiff
path: root/templates/login.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'templates/login.tmpl')
-rw-r--r--templates/login.tmpl14
1 files changed, 14 insertions, 0 deletions
diff --git a/templates/login.tmpl b/templates/login.tmpl
new file mode 100644
index 0000000..6baee6c
--- /dev/null
+++ b/templates/login.tmpl
@@ -0,0 +1,14 @@
+#def title: login
+#def header: login
+#extends templates.base
+#def content
+#set error = $error or ''
+ <div class="error">$error</div>
+ <form method="post" action="/l">
+ <p>username</p>
+ <p><input type="text" id="username" name="username" /></p>
+ <p>password</p>
+ <p><input type="password" id="password" name="password" /></p>
+ <p><input type="submit" value="Upload" /></p>
+ </form>
+#end def