21 lines
739 B
HTML
21 lines
739 B
HTML
{% extends 'programmer/base.html' %}
|
|
{% load django_bootstrap5 %}
|
|
|
|
{% block content %}
|
|
<div class="page-header">
|
|
<h1 class="page-title">Восстановление пароля</h1>
|
|
<p class="page-subtitle">Введите email, указанный при регистрации</p>
|
|
</div>
|
|
|
|
<div class="content-card" style="max-width: 500px; margin: 0 auto;">
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{% bootstrap_form form %}
|
|
<button type="submit" class="btn btn-primary" style="width: 100%;">Отправить инструкцию</button>
|
|
</form>
|
|
<hr>
|
|
<p class="text-center">
|
|
<a href="{% url 'login' %}">Вспомнили пароль? Войти</a>
|
|
</p>
|
|
</div>
|
|
{% endblock %} |