Files
freno-dev/src/server/email-templates/password-reset.html
2026-01-07 17:53:21 -05:00

49 lines
1.2 KiB
HTML

<html>
<head>
<style>
.center {
display: flex;
justify-content: center;
align-items: center;
text-align: center;
flex-direction: column;
}
.button {
display: inline-block;
padding: 10px 20px;
text-align: center;
text-decoration: none;
color: #ffffff;
background-color: #007bff;
border-radius: 6px;
transition: background-color 0.3s;
margin: 10px 0;
}
.button:hover {
background-color: #0056b3;
}
.expiry {
color: #666;
font-size: 14px;
}
</style>
</head>
<body>
<div class="center">
<h2>Reset Your Password</h2>
<p>Click the button below to reset your password:</p>
<a href="{{RESET_URL}}" class="button">Reset Password</a>
<p class="expiry">
This link will expire in {{EXPIRY_TIME}} and can only be used once.
</p>
</div>
<div class="center" style="margin-top: 30px">
<p style="color: #666; font-size: 12px">
You can ignore this if you did not request this email, someone may have
requested it in error
</p>
</div>
</body>
</html>