34 lines
789 B
HTML
34 lines
789 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>Team Digest</p>
|
|
</div>
|
|
</body>
|
|
</html> |