Show
Ignore:
Timestamp:
06/11/10 16:31:19 (3 years ago)
Author:
rafael.soares
Message:

In the user registration, implemented the validation to verify that an e-mail is .

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/clinicaltrials/registration/templates/registration/registration_form.html

    r345 r415  
    1 {% extends "base.html" %} 
     1{% extends "base_columns.html" %} 
    22{% load i18n %} 
    33 
     
    55 
    66{% if form.errors %} 
    7 <p>{% trans "Please correct the errors below." %}</p> 
     7    <p>{% trans "Please correct the errors below." %}</p> 
    88{% endif %} 
    99 
     
    1515</form> 
    1616 
     17{% if form.email.data %} 
     18    {% if form.email.errors %} 
     19        <h3>{% trans "If this email belongs to you," %}  
     20        <a href="{% url reviewapp.resend_activation_email %}?email={{ form.email.data }}"> 
     21        {% trans "click here" %}</a> {% trans "to retrieve your username and password." %}</h3> 
     22    {% endif %} 
     23{% endif %} 
     24 
    1725{% endblock %}