Files
goodtimes/templates/otp/otp.html
2024-04-15 17:04:50 +05:30

37 lines
754 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Your One-Time Password - GoodTimes Ltd</title>
<style>
body {
font-family: sans-serif;
margin: 0;
padding: 20px;
}
h1 {
font-size: 24px;
margin-bottom: 10px;
}
p {
line-height: 1.5;
}
.code {
font-size: 20px;
font-weight: bold;
background-color: #f2f2f2;
padding: 10px;
border-radius: 5px;
}
</style>
</head>
<body>
<h1>Hi {{ user.email }},</h1>
<p>You requested a one-time password (OTP) to {{ action }}. Here is your OTP:</p>
<p class="code">{{ OTP }}</p>
<p>This OTP is valid for 1 minute. Please do not share it with anyone. If you did not request this OTP, please ignore this email.</p>
<p>Thanks,</p>
<p>Team</p>
<p>Good Times Ltd</p>
</body>
</html>