blob: d800eaf9b91bbfcce05e7b32cd6f4704632c9ad1 (
plain)
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
|
{% extends "base_content.html" %}
<!--signup.html-->
{% load i18n %}
{% block title %}{% spaceless %}{% trans "Signup" %}{% endspaceless %}{% endblock %}
{% block content %}
<div class="headNormal">
{% trans "Create login name and password" %}
</div>
<p class="message">{% trans "Traditional signup info" %}</p>
<form action="{% url user_signup %}" method="post" accept-charset="utf-8">
<ul class="form-horizontal-rows">
<li><label for="usename_id">{{form.username.label}}</label>{{form.username}}{{form.username.errors}}</li>
<li><label for="email_id">{{form.email.label}}</label>{{form.email}}{{form.email.errors}}</li>
<li><label for="password1_id">{{form.password1.label}}</label>{{form.password1}}{{form.password1.errors}}</li>
<li><label for="password2_id">{{form.password2.label}}</label>{{form.password2}}{{form.password2.errors}}</li>
</ul>
<p class="signup_p">{% trans "receive updates motivational blurb" %}</p>
<p class="signup_p">{% trans "Please select your preferred email update schedule for the following groups of questions:" %}</p>
<div class='simple-subscribe-options'>
{{email_feeds_form.subscribe}}
</div>
<p class="signup_p">{% trans "Please read and type in the two words below to help us prevent automated account creation." %}</p>
{{form.recaptcha}}
<div class="submit-row"><input type="submit" class="submit" value="{% trans "Create Account" %}" />
<strong>{% trans "or" %}
<a href="{% url user_signin %}">{% trans "return to OpenID login" %}</a></strong></div>
</form>
{% endblock %}
<!--end signup.html-->
|