| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Verify Your Email</title>
- <style>
- body {
- font-family: Arial, sans-serif;
- line-height: 1.6;
- color: #333;
- max-width: 600px;
- margin: 0 auto;
- padding: 20px;
- }
- .container {
- background-color: #f9f9f9;
- border-radius: 10px;
- padding: 30px;
- margin-top: 20px;
- }
- .header {
- text-align: center;
- margin-bottom: 30px;
- }
- .logo {
- max-width: 150px;
- margin-bottom: 20px;
- }
- .button {
- display: inline-block;
- background-color: #4CAF50;
- color: white;
- padding: 12px 24px;
- text-decoration: none;
- border-radius: 5px;
- margin: 20px 0;
- }
- .code {
- background-color: #f0f0f0;
- padding: 10px;
- border-radius: 5px;
- font-family: monospace;
- font-size: 18px;
- text-align: center;
- margin: 20px 0;
- }
- .footer {
- margin-top: 30px;
- text-align: center;
- color: #777;
- font-size: 12px;
- }
- </style>
- </head>
- <body>
- <div class="container">
- <div class="header">
- <h1>Verify Your Email Address</h1>
- </div>
-
- <p>Hello <strong>{{ username }}</strong>,</p>
-
- <p>Thank you for registering! Please verify your email address by clicking the button below:</p>
-
- <div style="text-align: center;">
- <a href="{{ verification_url }}" class="button">Verify Email Address</a>
- </div>
-
- {% if verification_code %}
- <p>Or enter this verification code on the verification page:</p>
- <div class="code">{{ verification_code }}</div>
- {% endif %}
-
- <p>This link will expire in 24 hours. If you didn't create an account, you can safely ignore this email.</p>
-
- <p>If the button doesn't work, copy and paste this URL into your browser:</p>
- <p><small>{{ verification_url }}</small></p>
-
- <div class="footer">
- <p>© 2024 Your Company. All rights reserved.</p>
- <p>This is an automated message, please do not reply to this email.</p>
- </div>
- </div>
- </body>
- </html>
|