25 lines
1.1 KiB
HTML
25 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Email Address Verification</title>
|
|
<style>
|
|
body { font-family: Arial, sans-serif; background: #f6f6f6; margin: 0; padding: 0; }
|
|
.container { background: #fff; max-width: 600px; margin: 40px auto; padding: 30px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.05);}
|
|
.btn { display: inline-block; padding: 12px 24px; background: #007bff; color: #fff; text-decoration: none; border-radius: 4px; margin-top: 20px;}
|
|
.footer { margin-top: 30px; color: #888; font-size: 12px; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h2>Welcome to PengLogin</h2>
|
|
<p>Hello,</p>
|
|
<p>Thank you for signing up. To complete your registration, please verify your email address by clicking the button below:</p>
|
|
<a href="{{verification_link}}" class="btn">Verify my email address</a>
|
|
<p>If you did not request this, please ignore this message.</p>
|
|
<div class="footer">
|
|
© 2025 PengLogin. All rights reserved.
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |