summaryrefslogtreecommitdiffstats
path: root/templates/password.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/password.html')
-rw-r--r--templates/password.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/templates/password.html b/templates/password.html
new file mode 100644
index 0000000..ec5b091
--- /dev/null
+++ b/templates/password.html
@@ -0,0 +1,19 @@
+{% extends "base.html" %}
+{% block title %}Request new password{% endblock %}
+{% block content %}
+<h1>Request new password</h1>
+<form action="password" method="post" class="cmxform">
+ <p style="font-size: small; padding-bottom: 5px;">
+ Please complete the form below to get a new temporary password
+ </p>
+ <fieldset>
+ <ol>
+ <li>
+ <label for="email">E-Mail</label>
+ <input id="email_input" type="text" name="email" value="you@*.fu-berlin.de" onfocus="clearInput('email_input')"/>
+ </li>
+ </ol>
+ </fieldset>
+ <p><input type="submit" value="Submit" /></p>
+</form>
+{% endblock %}