PonyConf/ponyconf/templates/registration/password_change_form.html

22 lines
317 B
HTML
Raw Normal View History

2016-06-07 20:59:13 +00:00
{% extends 'base.html' %}
2016-07-23 12:17:11 +00:00
{% load bootstrap3 i18n %}
2016-06-07 20:59:13 +00:00
{% block content %}
<div class="page-header">
<h1>
2016-07-23 12:17:11 +00:00
{% trans "Password Change" %}
2016-06-07 20:59:13 +00:00
</h1>
</div>
<div class="row">
2016-06-25 16:58:19 +00:00
<div class="col-md-offset-3 col-md-6">
2016-06-07 20:59:13 +00:00
<div class="well">
2016-06-25 16:58:19 +00:00
{% include "_form.html" %}
2016-06-07 20:59:13 +00:00
</div>
</div>
</div>
{% endblock %}