Generated on Jan 18, 2025, 5:25:45 AMgemini-1.5-flash
<!DOCTYPE html>
<html>
<head>
<title>Email Verification</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
.container {
max-width: 600px;
margin: 0 auto;
background-color: #ffffff;
padding: 20px;
}
.header {
background-color: #007bff;
color: #ffffff;
padding: 20px;
text-align: center;
}
.content {
padding: 20px;
}
.code {
font-size: 24px;
font-weight: bold;
color: #007bff;
margin-bottom: 20px;
}
.footer {
background-color: #f8f8f8;
padding: 10px;
text-align: center;
font-size: 12px;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>Email Verification</h1>
</div>
<div class="content">
<p>Here's your verification code to verify the email:</p>
<div class="code"><code><span id="verificationCode"></span></code></div>
<p>Thank you for using our service.</p>
</div>
<div class="footer">
<p>© 2023 Your Company Name</p>
</div>
</div>
<script>
// Replace with your actual code generation logic. This is a placeholder.
const verificationCode = Math.floor(100000 + Math.random() * 900000);
document.getElementById("verificationCode").textContent = verificationCode;
</script>
</body>
</html>