 feed83f517
			
		
	
	
		feed83f517
		
	
	
	
	
		
			
			* Proposals forms now have a header panel * Adds panels to the speaker forms * Imports latest pinax accounts templates * speakers/base and proposals/base now derive from utility_page.html * Most login forms now derive from take flight themes * Missed email_confirm * More accounts bits * Restructures login form * Puts submit etc buttons inside fieldset borders
		
			
				
	
	
		
			23 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends "utility_page.html" %}
 | |
| 
 | |
| {% load i18n %}
 | |
| {% load account_tags %}
 | |
| 
 | |
| {% block head_title %}{% trans "Password reset sent" %}{% endblock %}
 | |
| {% block page_title %}{% trans "Password reset sent" %}{% endblock %}
 | |
| 
 | |
| {% block utility_body %}
 | |
|     {% if not resend %}
 | |
|         <p>{% blocktrans %}We have sent you an email. If you do not receive it within a few minutes, try resending or contact us at <a href="mailto:{{ THEME_CONTACT_EMAIL }}">{{ THEME_CONTACT_EMAIL }}</a>.{% endblocktrans %}</p>
 | |
| 
 | |
|                 <form method="POST" action="{% url "account_password_reset" %}">
 | |
|                     {% csrf_token %}
 | |
|                     {% for field in form %}
 | |
|                         {{ field.as_hidden }}
 | |
|                     {% endfor %}
 | |
|                     <button type="submit" name="resend" class="btn btn-primary">{% trans "Resend" %}</button>
 | |
|                 </form>
 | |
|     {% else %}
 | |
|         <p>{% blocktrans %}We have resent the password email. If you do not receive it within a few minutes, contact us at <a href="mailto:{{ THEME_CONTACT_EMAIL }}">{{ THEME_CONTACT_EMAIL }}</a>.{% endblocktrans %}</p>
 | |
|     {% endif %}
 | |
| {% endblock %}
 |