sprint/templates/settings.html
Egor Matveev 9c0123cbf2 initial
2021-07-11 10:28:12 +03:00

19 lines
488 B
HTML

{% extends 'base.html' %}
{% block title %}Настройки{% endblock %}
{% block content %}
<h2>
Сменить пароль
</h2>
<font color="red">{{ error }}</font>
<form method="POST">
{% csrf_token %}
<table>
{{ form }}
</table>
<button type="submit" class="btn btn-dark" value="Сменить" style="margin-top: 20px;"><i class="fa fa-check"></i> Сменить</button>
</form>
<hr>
{% endblock %}