Generated on Mar 25, 2025, 3:47:55 PMgpt-4o-mini
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Email Verification</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
.container {
width: 100%;
max-width: 600px;
margin: 0 auto;
background: #ffffff;
padding: 20px;
border-radius: 5px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header {
text-align: center;
padding: 10px 0;
}
.header h1 {
color: #333;
}
.content {
margin: 20px 0;
line-height: 1.6;
color: #555;
}
.button {
display: inline-block;
padding: 10px 20px;
background-color: #007BFF;
color: #ffffff;
text-decoration: none;
border-radius: 5px;
margin: 20px 0;
}
.footer {
text-align: center;
font-size: 12px;
color: #aaa;
margin-top: 20px;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>Email Verification</h1>
</div>
<div class="content">
<p>Hi there,</p>
<p>Thank you for signing up! Please verify your email address by clicking the button below:</p>
<a href="https://example.com/verify?token=your_verification_token" class="button">Verify Email</a>
<p>If you did not create an account, no further action is required.</p>
</div>
<div class="footer">
<p>© 2023 Your Company. All rights reserved.</p>
</div>
</div>
</body>
</html>