summaryrefslogtreecommitdiffstats
path: root/templates/register.html
diff options
context:
space:
mode:
authorroot <root@dev.spline.de>2008-08-17 12:08:12 +0200
committerroot <root@dev.spline.de>2008-08-17 12:08:12 +0200
commit236ad4c8dbef414ef29348634fd0a6ccded1a1d6 (patch)
treeb41990232be2235d87878c8f35fbc4a55b8448dc /templates/register.html
downloaddev-account-236ad4c8dbef414ef29348634fd0a6ccded1a1d6.tar.gz
dev-account-236ad4c8dbef414ef29348634fd0a6ccded1a1d6.tar.xz
dev-account-236ad4c8dbef414ef29348634fd0a6ccded1a1d6.zip
initial import
Diffstat (limited to 'templates/register.html')
-rw-r--r--templates/register.html40
1 files changed, 40 insertions, 0 deletions
diff --git a/templates/register.html b/templates/register.html
new file mode 100644
index 0000000..1b579f3
--- /dev/null
+++ b/templates/register.html
@@ -0,0 +1,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 %}