Makerpage / app /templates /forgot_password.html
Edoruin's picture
password recuperation scripts
411b9f2
{% 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 %}