invite.html 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  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>You're Invited to ShopCall.ai</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. .highlight-box {
  66. background-color: #fef3c7;
  67. border-left: 4px solid #f59e0b;
  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. .feature-list {
  96. margin: 20px 0;
  97. padding-left: 0;
  98. list-style: none;
  99. }
  100. .feature-list li {
  101. padding: 8px 0 8px 28px;
  102. position: relative;
  103. color: #44403c;
  104. }
  105. .feature-list li:before {
  106. content: "✓";
  107. position: absolute;
  108. left: 0;
  109. color: #22c55e;
  110. font-weight: bold;
  111. font-size: 18px;
  112. }
  113. </style>
  114. </head>
  115. <body>
  116. <div class="container">
  117. <div class="header">
  118. <a href="{{ .SiteURL }}" class="logo">ShopCall.ai</a>
  119. </div>
  120. <div class="content">
  121. <h1 class="title">You're Invited to Join ShopCall.ai!</h1>
  122. <p class="text">Hello!</p>
  123. <p class="text">You've been invited to join ShopCall.ai, the AI-powered phone support system that transforms e-commerce customer service.</p>
  124. <div class="highlight-box">
  125. <strong>Your invitation is ready!</strong><br>
  126. Click the button below to accept your invitation and set up your account.
  127. </div>
  128. <a href="{{ .ConfirmationURL }}" class="button">Accept Invitation</a>
  129. <div class="divider"></div>
  130. <p class="text"><strong>Why ShopCall.ai?</strong></p>
  131. <ul class="feature-list">
  132. <li>24/7 AI phone support that never sleeps</li>
  133. <li>Support in 50+ languages</li>
  134. <li>78% reduction in customer service costs</li>
  135. <li>Seamless integration with your e-commerce platform</li>
  136. <li>Real-time analytics and call insights</li>
  137. </ul>
  138. <p class="note">This invitation link will expire in 7 days. If you didn't expect this invitation or have any questions, please contact the person who invited you.</p>
  139. </div>
  140. <div class="footer">
  141. <p>ShopCall.ai - AI Phone Support That Never Sleeps</p>
  142. <p style="margin-top: 10px;">
  143. <a href="{{ .SiteURL }}/about">About</a> •
  144. <a href="{{ .SiteURL }}/privacy">Privacy Policy</a> •
  145. <a href="{{ .SiteURL }}/terms">Terms of Service</a>
  146. </p>
  147. <p style="margin-top: 10px;">© 2025 ShopCall.ai. All rights reserved.</p>
  148. </div>
  149. </div>
  150. </body>
  151. </html>