summaryrefslogtreecommitdiffstats
path: root/templates/password.html
blob: ec5b09158d7d1eb17f4cdea3967d4be267ac71ba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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 %}