File diff ceda6dce0a32 → 71805cc66e00
pinaxcon/templates/account/password_change.html
Show inline comments
 
new file 100644
 
{% extends "account/base.html" %}
 

	
 
{% load i18n %}
 
{% load bootstrap %}
 

	
 
{% block body_class %}account account-password{% endblock %}
 

	
 
{% block head_title %}{% trans "Change password" %}{% endblock %}
 

	
 
{% block content %}
 
    <div class="row">
 
        <div class="col-md-5">
 
            <form method="POST" action="">
 
                <legend>{% trans "Change password" %}</legend>
 
                <fieldset>
 
                    {% csrf_token %}
 
                    {{ form|bootstrap }}
 
                    <button type="submit" class="btn btn-primary">{% trans "Save" %}</button>
 
                </fieldset>
 
            </form>
 
        </div>
 
    </div>
 
{% endblock %}