verifyEmail.hbs•875 B
<!DOCTYPE html>
<html>
<head>
<title>Fonoster - Email Verification</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
color: #333;
line-height: 1.6;
padding: 20px;
}
.container {
background: #fff;
padding: 20px;
}
.verification-code {
font-size: 1.5em;
font-weight: bold;
}
@media (prefers-color-scheme: dark) {
body {
background-color: #181818;
color: #f4f4f4;
}
.container {
background: #181818;
}
}
</style>
</head>
<body>
<div class="container">
<p>To continue with your Fonoster account, please verify your email with the code below:</p>
<p class="verification-code">{{verificationCode}}</p>
<p>If you didn't request this code, you can ignore this message.</p>
</div>
</body>
</html>