resetPassword.hbs•1.12 kB
<!DOCTYPE html>
<html>
<head>
<title>Reset Password</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
color: #333;
line-height: 1.6;
padding: 20px;
}
.container {
background: #fff;
padding: 20px;
}
.button {
display: inline-block;
padding: 10px 20px;
line-height: 20px;
background: linear-gradient(323deg, #008751 30.56%, #3ae19e 118.19%);
color: white !important;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
text-align: center;
border: none;
cursor: pointer;
}
@media (prefers-color-scheme: dark) {
body {
background-color: #181818;
color: #f4f4f4;
}
.container {
background: #181818;
}
}
</style>
</head>
<body>
<div class="container">
<p>You have requested a password reset for your Fonoster account.</p>
<p>To reset your password, please click on the button below:</p>
<a href="{{resetPasswordUrl}}" class="button">Reset Password</a>
</div>
</body>
</html>