summaryrefslogtreecommitdiffstats
path: root/templates/register.html
blob: 1b579f3c9a72e56fe18fb8340238ebb4ed588163 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{% extends "base.html" %}
{% block title %}Create new account{% endblock %}
{% block content %}
<h1>Create new account</h1>
<div class="subcolumns">

	<div class="c66l">
	<form action="register" method="post" class="cmxform">
		<p style="font-size: small; padding-bottom: 5px;">
		Please complete the form below to register a new account
		</p>
		<fieldset>
			<ol>
				<li>
				<label for="login">Username</label>
				<input id="login_input" type="text" name="login" onfocus="clearInput('login_input')"/>
				</li>
				<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="Register" /></p>
	</form>
	</div>

	<div class="c33r">
		<div class="infobox">
			<h1>I do not have a &nbsp;*.fu-berlin.de email address!</h1>
			<p>
			In this case write an email to <a href="mailto:dev@spline.de">dev@spline.de</a> and
			give a good reason why you need a dev.spline.de account.
			<br/>
			Policy has it, that usually we only accept members of the FU-Berlin.
			</p>
		</div>
	</div>
</div>
{% endblock %}