blob: 0d8e965914922fed7cf89b2e5b902d0aecb50a6b (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
{% extends "registration/base.html" %}
{% load i18n %}
{% block title %}{% translate "Sign up" %}{% endblock %}
{% block content %}
<h1>{% translate "Create an account" %}</h1>
{% if form.errors %}
<p class="errors">{% translate "Please correct the errors below:" %} {{ form.non_field_errors }}</p>
{% endif %}
<form method="post" action="" class="form-input">
{% csrf_token %}
<div>
<label for="id_username">{% translate "Username:" %}</label>
{% if form.username.errors %}
<p class="errors">{{ form.username.errors.as_text }}</p>
{% endif %}
{{ form.username }}
</div>
<div>
<label for="id_email">{% translate "Email address:" %}</label>
{% if form.email.errors %}
<p class="errors">{{ form.email.errors.as_text }}</p>
{% endif %}
{{ form.email }}
</div>
<div>
<label for="id_password1">{% translate "Password:" %}</label>
{% if form.password1.errors %}
<p class="errors">{{ form.password1.errors.as_text }}</p>
{% endif %}
{{ form.password1 }}
</div>
<div>
<label for="id_password2">{% translate "Password (type again to catch typos):" %}</label>
{% if form.password2.errors %}
<p class="errors">{{ form.password2.errors.as_text }}</p>
{% endif %}
{{ form.password2 }}
</div>
<p class="submit">
<input type="submit" class="cta" value="{% translate 'Register' %}">
</p>
</form>
{% endblock %}
{% block content-related %}
<div role="complementary">
<h2 class="visuallyhidden" id="aside-header">{% translate "Help" %}</h2>
<p>
{% blocktranslate trimmed %}
Fill out the form to the right (all fields are required), and your
account will be created; you'll be sent an email with instructions on how
to finish your registration.
{% endblocktranslate %}
</p>
<p>
{% blocktranslate trimmed %}
We'll only use your email to send you signup instructions. We hate spam
as much as you do.
{% endblocktranslate %}
</p>
<p>
{% blocktranslate trimmed %}
This account will let you log into the ticket tracker, claim tickets,
and be exempt from spam filtering.
{% endblocktranslate %}
</p>
<p>
{% blocktranslate trimmed %}
Your username can only consist of alphanumeric characters and
underscores and may be up to 30 characters long.
{% endblocktranslate %}
</p>
</div>
{% endblock %}
|