reauthentication.html 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  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>Verify Your Identity</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. .security-box {
  66. background-color: #dbeafe;
  67. border-left: 4px solid #3b82f6;
  68. padding: 16px 20px;
  69. margin: 20px 0;
  70. border-radius: 4px;
  71. }
  72. .code-box {
  73. background-color: #f5f5f4;
  74. border: 1px solid #e7e5e4;
  75. border-radius: 8px;
  76. padding: 16px;
  77. margin: 20px 0;
  78. text-align: center;
  79. }
  80. .code {
  81. font-family: 'Courier New', monospace;
  82. font-size: 24px;
  83. font-weight: bold;
  84. color: #1c1917;
  85. letter-spacing: 2px;
  86. }
  87. .divider {
  88. border-top: 1px solid #e7e5e4;
  89. margin: 30px 0;
  90. }
  91. .footer {
  92. padding: 30px;
  93. text-align: center;
  94. color: #78716c;
  95. font-size: 14px;
  96. background-color: #fafaf9;
  97. }
  98. .footer a {
  99. color: #57534e;
  100. text-decoration: none;
  101. }
  102. .footer a:hover {
  103. text-decoration: underline;
  104. }
  105. .note {
  106. font-size: 14px;
  107. color: #78716c;
  108. margin-top: 20px;
  109. }
  110. </style>
  111. </head>
  112. <body>
  113. <div class="container">
  114. <div class="header">
  115. <a href="{{ .SiteURL }}" class="logo">ShopCall.ai</a>
  116. </div>
  117. <div class="content">
  118. <h1 class="title">Verify Your Identity</h1>
  119. <p class="text">Hi there!</p>
  120. <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>
  121. <div class="security-box">
  122. <strong>🔒 Security Verification Required</strong><br>
  123. Click the button below to verify your identity and continue.
  124. </div>
  125. <a href="{{ .ConfirmationURL }}" class="button">Verify My Identity</a>
  126. <div class="divider"></div>
  127. <p class="text">Alternatively, you can use this verification code:</p>
  128. <div class="code-box">
  129. <span class="code">{{ .Token }}</span>
  130. </div>
  131. <p class="text">If the button doesn't work, copy and paste this link into your browser:</p>
  132. <p class="text" style="word-break: break-all; color: #3b82f6;">{{ .ConfirmationURL }}</p>
  133. <p class="note">This verification link will expire in 15 minutes for your security.</p>
  134. <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>
  135. </div>
  136. <div class="footer">
  137. <p>ShopCall.ai - AI Phone Support That Never Sleeps</p>
  138. <p style="margin-top: 10px;">
  139. <a href="{{ .SiteURL }}/about">About</a> •
  140. <a href="{{ .SiteURL }}/privacy">Privacy Policy</a> •
  141. <a href="{{ .SiteURL }}/terms">Terms of Service</a>
  142. </p>
  143. <p style="margin-top: 10px;">© 2025 ShopCall.ai. All rights reserved.</p>
  144. </div>
  145. </div>
  146. </body>
  147. </html>