summaryrefslogtreecommitdiff
path: root/templates/login.tmpl
diff options
context:
space:
mode:
authorJon Bergli Heier <snakebite@jvnv.net>2011-02-15 23:04:18 +0100
committerJon Bergli Heier <snakebite@jvnv.net>2011-02-15 23:04:18 +0100
commit4989a8e572ea666d3e392a503ee6831b8a9386f9 (patch)
treef1cf0bf4e6744acb45ad3cbd15023916762ecf37 /templates/login.tmpl
Initial commit.
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