This commit is contained in:
Egor Matveev
2021-07-11 10:28:12 +03:00
commit 9c0123cbf2
102 changed files with 6285 additions and 0 deletions

18
templates/settings.html Normal file
View File

@@ -0,0 +1,18 @@
{% 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 %}