Add password change page

This commit is contained in:
Sokurov Idar
2021-04-26 21:47:45 +03:00
parent 1bb951dcda
commit 5c3801c317
4 changed files with 29 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
{% extends "base/base.html" %}
{% load static %}
{% block title %}Изменение пароля{% endblock title %}
{% block heading %}Сменить пароль{% endblock %}
{% block content %}
<form method="post">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Сменить" class="btn btn-success">
</form>
{% endblock content %}