Files
market/trading/templates/trading/account/password_change.html
Alek Ratzloff a61ad46b49 Initial commit
Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
2020-01-15 20:15:14 -05:00

28 lines
849 B
HTML

{% extends "trading/base.html" %}
{% load bootstrap4 %}
{% block title %}
{% with title="Password change" %}
{{ block.super }}
{% endwith %}
{% endblock title %}
{% block content %}
<div class="row">
<div class="col-sm">
<h4>Update your password</h4>
<form method="post">
{% csrf_token %}
{% bootstrap_form form %}
<div class="form-group">
<button class="btn btn-primary" type="submit">Change password</button>
<a class="btn btn-link" href="{% url "trading:index" %}" role="button">Cancel</a>
</div>
{% if next %}
<input type="hidden" name="next" value="{{next}}"/>
{% endif %}
</form>
</div>
</div>
{% endblock %}