| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Reset Your Password</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;
- }
- .warning-box {
- background-color: #fef2f2;
- border-left: 4px solid #ef4444;
- padding: 16px 20px;
- margin: 20px 0;
- border-radius: 4px;
- }
- .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">Reset Your Password</h1>
- <p class="text">Hi there!</p>
- <p class="text">You recently requested to reset your password for your ShopCall.ai account. Click the button below to create a new password:</p>
- <a href="{{ .ConfirmationURL }}" class="button">Reset Password</a>
- <div class="warning-box">
- <strong>⚠️ Security Notice</strong><br>
- This password reset link is valid for 1 hour. If you didn't request a password reset, please ignore this email and your password will remain unchanged.
- </div>
- <div class="divider"></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"><strong>Tips for a strong password:</strong></p>
- <ul style="margin: 10px 0 20px 20px; color: #78716c; font-size: 14px;">
- <li>Use at least 8 characters</li>
- <li>Include uppercase and lowercase letters</li>
- <li>Add numbers and special characters</li>
- <li>Avoid using common words or personal information</li>
- </ul>
- <p class="note">If you suspect unauthorized access to your account, please contact our support team immediately.</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>
|