Files
erp-imprimelibros/src/main/resources/templates/imprimelibros/email/password-reset.html
2025-10-04 16:51:22 +02:00

46 lines
1.6 KiB
HTML

<!DOCTYPE html>
<html lang="es" xmlns:th="http://www.thymeleaf.org">
<th:block th:fragment="content">
<p style="margin:0 0 12px; color:#333333 !important;">
<span th:text="#{email.greeting}">Hola</span>
<span th:text="${fullName} ?: 'Usuario'">Usuario</span>,
</p>
<p style="margin:0 0 12px; color:#333333 !important;">
<span th:text="#{email.reset-password.body}">
Haz clic en el siguiente botón para restablecer tu contraseña:
</span>
</p>
<p style="margin:0 0 16px;">
<a th:href="${resetUrl}"
style="display:inline-block; padding:12px 20px; border-radius:6px; font-weight:bold;
background:#2563eb; color:#ffffff !important; text-decoration:none;">
<span th:text="#{email.reset-password.button}">Restablecer contraseña</span>
</a>
</p>
<p style="margin:0 0 8px; color:#333333 !important;">
<span th:text="#{email.reset-password.link-instruction}">
Si no funciona, copia y pega esta URL en tu navegador:
</span>
</p>
<p style="margin:0 0 12px; color:#333333 !important;">
<span th:text="${resetUrl}">https://...</span>
</p>
<p style="margin:0 0 12px; color:#333333 !important;">
<span th:text="#{email.reset-password.expiration(${minutes})}">
Este enlace caduca en 60 minutos.
</span>
</p>
<p style="margin:0; color:#333333 !important;">
<span th:text="#{email.reset-password.ignoreMessage}">
Si no solicitaste este cambio, puedes ignorar este mensaje.
</span>
</p>
</th:block>
</html>