past3d/users/templates/users/password_change.html

31 lines
628 B
HTML

{% extends "base.html" %}
{% block title %} Change your password {% endblock %}
{% block headeraddons %}
<script src="{{STATIC_URL}}js/jquery-1.10.2.min.js"></script>
{% endblock %}
{% block content %}
<div id="content">
<div id="prompt">
<!-- if IE without GCF, prompt goes here -->
</div>
<h1>Change password</h1>
<div class="pure-g-r">
<div class="pure-u-2-3">
<div class="textcontainer">
{% include 'form.html' with button_text='change' %}
</div>
</div>
<div class="pure-u-1-3">
{% include 'pastebin/latest_geometries.html' %}
</div>
</div>
</div>
{% endblock %}