File size: 1,053 Bytes
411b9f2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{% extends "base.html" %}

{% block content %}
<div class="hero section" style="text-align: center; margin-bottom: 3rem;">
    <h1>RECUPERAR CONTRASEÑA</h1>
    <p class="text-dim">Ingresa tu correo electrónico para recibir un enlace de recuperación.</p>
</div>

<div class="glass" style="max-width: 400px; margin: 0 auto; padding: 2.5rem; border-radius: 24px;">
    <form method="POST">
        <div class="form-group">
            <label for="email">Correo Electrónico</label>
            <input type="email" id="email" name="email" placeholder="tu@email.com" required autofocus>
        </div>

        <button type="submit" class="btn btn-primary" style="width: 100%; margin-top: 1rem;">
            ENVIAR ENLACE <i class="fas fa-paper-plane" style="margin-left: 0.5rem;"></i>
        </button>
    </form>

    <div style="margin-top: 2rem; text-align: center; font-size: 0.85rem;" class="text-dim">
        <p><a href="/login" style="color: #38bdf8; text-decoration: none;">Volver al inicio de sesión</a></p>
    </div>
</div>
{% endblock %}