Update all page titles and branding in FastAPI app and templates to use Russian transliteration of product name. Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
28 lines
1.2 KiB
HTML
28 lines
1.2 KiB
HTML
{% extends "base.html" %}
|
||
{% block title %}Забыли пароль — ЭВОСИНК{% endblock %}
|
||
|
||
{% block content %}
|
||
<div class="row justify-content-center">
|
||
<div class="col-sm-10 col-md-6 col-lg-5">
|
||
<div class="card shadow-sm mt-4">
|
||
<div class="card-body p-4">
|
||
<h1 class="card-title h4 mb-2">Забыли пароль?</h1>
|
||
<p class="text-muted small mb-4">Введите email, указанный при регистрации.</p>
|
||
<form method="post" action="/forgot-password">
|
||
<div class="mb-3">
|
||
<label for="email" class="form-label">Email</label>
|
||
<input type="email" id="email" name="email" class="form-control" required>
|
||
</div>
|
||
<div class="d-grid">
|
||
<button type="submit" class="btn btn-primary">Отправить ссылку для сброса</button>
|
||
</div>
|
||
</form>
|
||
<div class="mt-3 text-center small">
|
||
<a href="/login">Вернуться ко входу</a>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
{% endblock %}
|