20 lines
		
	
	
		
			660 B
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			660 B
		
	
	
	
		
			HTML
		
	
	
	
| {% extends 'main/temp.html' %}
 | |
| {% load static %}
 | |
| 
 | |
| {% block maincontent %}
 | |
| <section class="main-content resetpass-main-content" id="main-content">
 | |
| 	<h1 class="page-title">Восстановление пароля</h1>
 | |
| 	<section class="login-main">
 | |
| 		<section class="login-left"></section>
 | |
| 		<section class="reset-form">
 | |
| 			<form action="{% url 'password_reset' %}" method="post">
 | |
| 				{{ form }}
 | |
| 				{% csrf_token %}
 | |
| 				<button type="submit" class="signin-button">Восстановить</button>
 | |
| 			</form>
 | |
| 		</section>
 | |
| 		<section class="login-right"></section>
 | |
| 	</section>
 | |
| </section>
 | |
| {% endblock %}
 | |
| {% block titletext %}Dhaverd - Reset Password{% endblock %} |