18 lines
		
	
	
		
			451 B
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			451 B
		
	
	
	
		
			HTML
		
	
	
	
{% extends "account/base.html" %}
 | 
						|
 | 
						|
{% load i18n %}
 | 
						|
{% load crispy_forms_tags %}
 | 
						|
 | 
						|
{% block head_title %}{% trans "Set Password" %}{% endblock %}
 | 
						|
 | 
						|
{% block inner %}
 | 
						|
    <h1>{% trans "Set Password" %}</h1>
 | 
						|
 | 
						|
    <form method="POST" action="{% url 'account_set_password' %}" class="password_set">
 | 
						|
        {% csrf_token %}
 | 
						|
        {{ form|crispy }}
 | 
						|
        <input type="submit" name="action" value="{% trans 'Set Password' %}"/>
 | 
						|
    </form>
 | 
						|
{% endblock %}
 | 
						|
 |