recovery.html 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Reset Your Password</title>
  7. <style>
  8. * {
  9. margin: 0;
  10. padding: 0;
  11. box-sizing: border-box;
  12. }
  13. body {
  14. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  15. line-height: 1.6;
  16. color: #1c1917;
  17. background-color: #fafaf9;
  18. }
  19. .container {
  20. max-width: 600px;
  21. margin: 0 auto;
  22. background-color: #ffffff;
  23. }
  24. .header {
  25. background: linear-gradient(135deg, #1c1917 0%, #292524 100%);
  26. padding: 40px 20px;
  27. text-align: center;
  28. }
  29. .logo {
  30. font-size: 32px;
  31. font-weight: bold;
  32. color: #ffffff;
  33. text-decoration: none;
  34. letter-spacing: -0.5px;
  35. }
  36. .content {
  37. padding: 40px 30px;
  38. }
  39. .title {
  40. font-size: 24px;
  41. font-weight: 600;
  42. color: #1c1917;
  43. margin-bottom: 20px;
  44. }
  45. .text {
  46. font-size: 16px;
  47. color: #44403c;
  48. margin-bottom: 20px;
  49. }
  50. .button {
  51. display: inline-block;
  52. padding: 14px 32px;
  53. background-color: #1c1917;
  54. color: #ffffff;
  55. text-decoration: none;
  56. border-radius: 8px;
  57. font-weight: 600;
  58. font-size: 16px;
  59. margin: 20px 0;
  60. transition: background-color 0.2s;
  61. }
  62. .button:hover {
  63. background-color: #292524;
  64. }
  65. .warning-box {
  66. background-color: #fef2f2;
  67. border-left: 4px solid #ef4444;
  68. padding: 16px 20px;
  69. margin: 20px 0;
  70. border-radius: 4px;
  71. }
  72. .divider {
  73. border-top: 1px solid #e7e5e4;
  74. margin: 30px 0;
  75. }
  76. .footer {
  77. padding: 30px;
  78. text-align: center;
  79. color: #78716c;
  80. font-size: 14px;
  81. background-color: #fafaf9;
  82. }
  83. .footer a {
  84. color: #57534e;
  85. text-decoration: none;
  86. }
  87. .footer a:hover {
  88. text-decoration: underline;
  89. }
  90. .note {
  91. font-size: 14px;
  92. color: #78716c;
  93. margin-top: 20px;
  94. }
  95. </style>
  96. </head>
  97. <body>
  98. <div class="container">
  99. <div class="header">
  100. <a href="{{ .SiteURL }}" class="logo">ShopCall.ai</a>
  101. </div>
  102. <div class="content">
  103. <h1 class="title">Reset Your Password</h1>
  104. <p class="text">Hi there!</p>
  105. <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>
  106. <a href="{{ .ConfirmationURL }}" class="button">Reset Password</a>
  107. <div class="warning-box">
  108. <strong>⚠️ Security Notice</strong><br>
  109. 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.
  110. </div>
  111. <div class="divider"></div>
  112. <p class="text">If the button doesn't work, copy and paste this link into your browser:</p>
  113. <p class="text" style="word-break: break-all; color: #3b82f6;">{{ .ConfirmationURL }}</p>
  114. <p class="note"><strong>Tips for a strong password:</strong></p>
  115. <ul style="margin: 10px 0 20px 20px; color: #78716c; font-size: 14px;">
  116. <li>Use at least 8 characters</li>
  117. <li>Include uppercase and lowercase letters</li>
  118. <li>Add numbers and special characters</li>
  119. <li>Avoid using common words or personal information</li>
  120. </ul>
  121. <p class="note">If you suspect unauthorized access to your account, please contact our support team immediately.</p>
  122. </div>
  123. <div class="footer">
  124. <p>ShopCall.ai - AI Phone Support That Never Sleeps</p>
  125. <p style="margin-top: 10px;">
  126. <a href="{{ .SiteURL }}/about">About</a> •
  127. <a href="{{ .SiteURL }}/privacy">Privacy Policy</a> •
  128. <a href="{{ .SiteURL }}/terms">Terms of Service</a>
  129. </p>
  130. <p style="margin-top: 10px;">© 2025 ShopCall.ai. All rights reserved.</p>
  131. </div>
  132. </div>
  133. </body>
  134. </html>