~widelands-dev/widelands-website/django_staticfiles

« back to all changes in this revision

Viewing changes to templates/registration/registration_form.html

  • Committer: Holger Rapp
  • Date: 2009-03-04 16:25:10 UTC
  • mfrom: (48.1.19 trunk)
  • Revision ID: rapp@mrt.uka.de-20090304162510-czsrm1o0cpgt0rd4
Merged with upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
    <td>
16
16
        {{ registration_form.username }} <br/>
17
17
        {% for error in registration_form.username.errors %}
18
 
        <span style="color:red">{{ error }}</span>
 
18
        <span class="errormessage">{{ error }}</span>
19
19
        {% endfor %}
20
20
    </td>
21
21
</tr>
24
24
    <td>
25
25
        {{ registration_form.email }} <br/>
26
26
        {% for error in registration_form.email.errors %}
27
 
        <span style="color:red">{{ error }}</span>
 
27
        <span class="errormessage">{{ error }}</span>
28
28
        {% endfor %}
29
29
    </td>
30
30
</tr>
33
33
    <td>
34
34
        {{ registration_form.password1 }} <br/>
35
35
        {% for error in registration_form.password1.errors %}
36
 
        <span style="color:red">{{ error }}</span>
 
36
        <span class="errormessage">{{ error }}</span>
37
37
        {% endfor %}
38
38
    </td>
39
39
</tr>
42
42
    <td>
43
43
        {{ registration_form.password2 }} <br/>
44
44
        {% for error in registration_form.password2.errors %}
45
 
        <span style="color:red">{{ error }}</span>
 
45
        <span class="errormessage">{{ error }}</span>
 
46
        {% endfor %}
 
47
    </td>
 
48
</tr>
 
49
<tr align="right">
 
50
    <td align="right" valign="top">Prove that you're no spambot:</td>
 
51
    <td>
 
52
        {{ registration_form.captcha|safe }} <br/>
 
53
        {% for error in registration_form.captcha.errors %}
 
54
        <span class="errormessage">{{ error }}</span>
46
55
        {% endfor %}
47
56
    </td>
48
57
</tr>