<div class="login">
<form name="fregister" action="" method="POST">
+ {% csrf_token %}
{{ form1.next }}
<div class="form-row-vertical margin-bottom">
<label for="id_username">{{ form1.username.label }}</label>
{% endif %}
{{ form1.email }}
</div>
+ <div class="form-row-vertical margin-bottom">
+ <label for="id_real_name">{{ form1.real_name.label }}</label>
+ {% if form1.real_name.errors %}
+ <p class="error">{{ form1.real_name.errors|join:", " }}</p>
+ {% endif %}
+ {{ form1.real_name }}
+ </div>
{% if form1.password1 %}
<div class="form-row-vertical margin-bottom">
<label for="password1_id">{{ form1.password1.label }}</label>
{% comment %}<!-- this form associates openID with an existing password-protected account, not yet functional -->
{% if form2 %}
<div class="login" style="display:none">
- <form name="fverify" action="{% url user_register %}" method="POST">
+ <form name="fverify" action="{% url "user_register" %}" method="POST">
+ {% csrf_token %}
{{ form2.next }}
<fieldset style="padding:10px">
<legend class="big">{% trans "Existing account" %}</legend>
<!--todo double check translation from chinese 确认 = "Register" -->
<div class="submit-row">
<input type="submit" class="submit" name="bverify" value="{% trans "Register" %}"/>
- <a href="{% url user_sendpw %}">{% trans "Forgot your password?" %}</a>
+ <a href="{% url "user_sendpw" %}">{% trans "Forgot your password?" %}</a>
</div>
</fieldset>
</form>