28 lines
849 B
HTML
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 %}
|