summaryrefslogtreecommitdiff
path: root/templates/changepass.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'templates/changepass.tmpl')
-rw-r--r--templates/changepass.tmpl16
1 files changed, 16 insertions, 0 deletions
diff --git a/templates/changepass.tmpl b/templates/changepass.tmpl
new file mode 100644
index 0000000..4171f36
--- /dev/null
+++ b/templates/changepass.tmpl
@@ -0,0 +1,16 @@
+#def title: changepass
+#def header: changepass
+#extends templates.base
+#def content
+#set error = $error or ''
+ <div class="error">$error</div>
+ <form method="post" action="${root}c">
+ <p>current password</p>
+ <p><input type="password" id="oldpass" name="oldpass" /></p>
+ <p>new password</p>
+ <p><input type="password" id="password" name="password" /></p>
+ <p>repeat new password</p>
+ <p><input type="password" id="password2" name="password2" /></p>
+ <p><input type="submit" value="Login" /></p>
+ </form>
+#end def