Files
digest_app/templates/module_auth/email_template.html
2024-03-11 14:48:48 +05:30

34 lines
794 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Password Reset</title>
<style>
body {
font-family: Arial, sans-serif;
font-size: 16px;
line-height: 1.5;
color: #333;
margin: 0;
padding: 0;
}
p {
margin: 16px 0;
}
strong {
font-weight: bold;
}
</style>
</head>
<body>
<div style="max-width: 600px; margin: 0 auto;">
<p>Hello {{name}},</p>
<p>It looks like you've requested a password reset for your account.</p>
<p>To reset your password, please use the following secret code:</p>
<p><strong>{{ code }}</strong></p>
<p>If you didn't request a password reset, you can safely ignore this email.</p>
<p>Thank you,</p>
<p>The Support Team</p>
</div>
</body>
</html>