| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Confirm Your Email</title>
- <style>
- * {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- }
- body {
- font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
- line-height: 1.6;
- color: #1c1917;
- background-color: #fafaf9;
- }
- .container {
- max-width: 600px;
- margin: 0 auto;
- background-color: #ffffff;
- }
- .header {
- background: linear-gradient(135deg, #1c1917 0%, #292524 100%);
- padding: 40px 20px;
- text-align: center;
- }
- .logo {
- font-size: 32px;
- font-weight: bold;
- color: #ffffff;
- text-decoration: none;
- letter-spacing: -0.5px;
- }
- .content {
- padding: 40px 30px;
- }
- .title {
- font-size: 24px;
- font-weight: 600;
- color: #1c1917;
- margin-bottom: 20px;
- }
- .text {
- font-size: 16px;
- color: #44403c;
- margin-bottom: 20px;
- }
- .button {
- display: inline-block;
- padding: 14px 32px;
- background-color: #1c1917;
- color: #ffffff;
- text-decoration: none;
- border-radius: 8px;
- font-weight: 600;
- font-size: 16px;
- margin: 20px 0;
- transition: background-color 0.2s;
- }
- .button:hover {
- background-color: #292524;
- }
- .divider {
- border-top: 1px solid #e7e5e4;
- margin: 30px 0;
- }
- .code-box {
- background-color: #f5f5f4;
- border: 1px solid #e7e5e4;
- border-radius: 8px;
- padding: 16px;
- margin: 20px 0;
- text-align: center;
- }
- .code {
- font-family: 'Courier New', monospace;
- font-size: 24px;
- font-weight: bold;
- color: #1c1917;
- letter-spacing: 2px;
- }
- .footer {
- padding: 30px;
- text-align: center;
- color: #78716c;
- font-size: 14px;
- background-color: #fafaf9;
- }
- .footer a {
- color: #57534e;
- text-decoration: none;
- }
- .footer a:hover {
- text-decoration: underline;
- }
- .note {
- font-size: 14px;
- color: #78716c;
- margin-top: 20px;
- }
- </style>
- </head>
- <body>
- <div class="container">
- <div class="header">
- <a href="{{ .SiteURL }}" class="logo">ShopCall.ai</a>
- </div>
- <div class="content">
- <h1 class="title">Confirm Your Email Address</h1>
- <p class="text">Hi there!</p>
- <p class="text">Thank you for signing up for ShopCall.ai! To complete your registration and start transforming your e-commerce customer service with AI-powered phone support, please confirm your email address.</p>
- <p class="text">Click the button below to verify your account:</p>
- <a href="{{ .ConfirmationURL }}" class="button">Confirm Email Address</a>
- <div class="divider"></div>
- <p class="text">Or use this confirmation code:</p>
- <div class="code-box">
- <span class="code">{{ .Token }}</span>
- </div>
- <p class="note">If you didn't create an account with ShopCall.ai, you can safely ignore this email.</p>
- <p class="note">This confirmation link will expire in 24 hours for security purposes.</p>
- </div>
- <div class="footer">
- <p>ShopCall.ai - AI Phone Support That Never Sleeps</p>
- <p style="margin-top: 10px;">
- <a href="{{ .SiteURL }}/about">About</a> •
- <a href="{{ .SiteURL }}/privacy">Privacy Policy</a> •
- <a href="{{ .SiteURL }}/terms">Terms of Service</a>
- </p>
- <p style="margin-top: 10px;">© 2025 ShopCall.ai. All rights reserved.</p>
- </div>
- </div>
- </body>
- </html>
|