mirror of
				https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
				synced 2025-10-30 10:21:16 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			807 B
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			807 B
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
| {% extends "base.html.j2" %}
 | |
| 
 | |
| {% block page_content %}
 | |
| <div class="col s12 m4">
 | |
|   <h3>Lost password?</h3>
 | |
|   <p>After entering your email address you will get an email with instruchtions about how to reset your password.</p>
 | |
| </div>
 | |
| 
 | |
| <div class="col s12 m8">
 | |
|   <div class="card small">
 | |
|     <form method="POST">
 | |
|       <div class="card-content">
 | |
|         {{ form.hidden_tag() }}
 | |
|         <div class="input-field">
 | |
|           {{ form.email(class='validate', type='email') }}
 | |
|           {{ form.email.label }}
 | |
|           {% for error in form.email.errors %}
 | |
|             <span class="helper-text" style="color:red;">{{ error }}</span>
 | |
|           {% endfor %}
 | |
|         </div>
 | |
|       </div>
 | |
|       <div class="card-action">
 | |
|         {{ form.submit(class='btn right') }}
 | |
|       </div>
 | |
|     </form>
 | |
|   </div>
 | |
| </div>
 | |
| {% endblock %}
 |