mirror of
				https://github.com/samuelclay/NewsBlur.git
				synced 2025-11-01 09:09:51 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			37 lines
		
	
	
		
			No EOL
		
	
	
		
			1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			No EOL
		
	
	
		
			1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends 'base.html' %}
 | 
						|
 | 
						|
{% load typogrify_tags utils_tags %}
 | 
						|
 | 
						|
{% block bodyclass %}NB-static{% endblock %}
 | 
						|
{% block extra_head_js %}
 | 
						|
  {% include_stylesheets "common" %}
 | 
						|
{% endblock %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
 | 
						|
<div class="NB-static-form-wrapper">
 | 
						|
    <div class="NB-delete-form NB-static-form">
 | 
						|
        
 | 
						|
        <h2>Forgot your password? No problem!</h2>
 | 
						|
 | 
						|
        <form action="" method="POST">{% csrf_token %}
 | 
						|
            <div class="NB-fields">
 | 
						|
                {{ forgot_password_form.email.label_tag }}
 | 
						|
                {{ forgot_password_form.email }}
 | 
						|
            </div>
 | 
						|
            
 | 
						|
            {% if forgot_password_form.errors %}
 | 
						|
            <div class="NB-errors">
 | 
						|
                {% for field, error in forgot_password_form.errors.items %}
 | 
						|
                    {{ error|safe }}
 | 
						|
                {% endfor %}
 | 
						|
            </div>
 | 
						|
            {% endif %}
 | 
						|
        
 | 
						|
            <input type="submit" class="submit-button NB-modal-submit-button NB-modal-submit-green" value="Email me the password change form"></button>
 | 
						|
        </form>
 | 
						|
 | 
						|
    </div>  
 | 
						|
</div>
 | 
						|
 | 
						|
{% endblock %} |