c1aac7ecac
Co-authored-by: Cursor <cursoragent@cursor.com>
24 lines
1.0 KiB
HTML
24 lines
1.0 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Сброс пароля — PhotoHost{% endblock %}
|
|
|
|
{% block content %}
|
|
<section class="auth-section">
|
|
<div class="container auth-container">
|
|
<div class="auth-card">
|
|
<h1 class="auth-card__title">Сброс пароля</h1>
|
|
<p class="auth-card__subtitle">Введите email — отправим ссылку для восстановления</p>
|
|
{% include "partials/alerts.html" %}
|
|
<form method="post" class="auth-form">
|
|
<div class="form-group">
|
|
<label for="email">Email</label>
|
|
<input type="email" id="email" name="email" required autocomplete="email">
|
|
</div>
|
|
<button type="submit" class="btn btn--primary btn--full">Отправить ссылку</button>
|
|
</form>
|
|
<p class="auth-card__footer"><a href="{{ url_for('auth.login') }}">← Вернуться ко входу</a></p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{% endblock %}
|