22 lines
		
	
	
		
			491 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			491 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "registration/_registration_base.html" %}
 | 
						|
{% block title %}Confirm password reset{% endblock %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
  <h2>
 | 
						|
    Reset password
 | 
						|
  </h2>
 | 
						|
 | 
						|
  <p class="padded">
 | 
						|
    Enter your new password below to reset your password:
 | 
						|
  </p>
 | 
						|
  <form method="post" action="">{% csrf_token %}
 | 
						|
    <table class="table">
 | 
						|
      {{ form.as_table }}
 | 
						|
      <tr>
 | 
						|
        <td></td>
 | 
						|
        <td><input type="submit" value="Set password" /></td>
 | 
						|
      </tr>
 | 
						|
    </table>
 | 
						|
  </form>
 | 
						|
{% endblock %}
 |