| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Verify Your Identity</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;
- }
- .security-box {
- background-color: #dbeafe;
- border-left: 4px solid #3b82f6;
- padding: 16px 20px;
- margin: 20px 0;
- border-radius: 4px;
- }
- .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;
- }
- .divider {
- border-top: 1px solid #e7e5e4;
- margin: 30px 0;
- }
- .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">Verify Your Identity</h1>
- <p class="text">Hi there!</p>
- <p class="text">For your security, we need to verify your identity before you can proceed with this action. This is a sensitive operation that requires additional authentication.</p>
- <div class="security-box">
- <strong>🔒 Security Verification Required</strong><br>
- Click the button below to verify your identity and continue.
- </div>
- <a href="{{ .ConfirmationURL }}" class="button">Verify My Identity</a>
- <div class="divider"></div>
- <p class="text">Alternatively, you can use this verification code:</p>
- <div class="code-box">
- <span class="code">{{ .Token }}</span>
- </div>
- <p class="text">If the button doesn't work, copy and paste this link into your browser:</p>
- <p class="text" style="word-break: break-all; color: #3b82f6;">{{ .ConfirmationURL }}</p>
- <p class="note">This verification link will expire in 15 minutes for your security.</p>
- <p class="note">If you didn't attempt this action, please contact our support team immediately, as someone may be trying to access your account.</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>
|