confirmation.html 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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>Confirm Your Email</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. .divider {
  66. border-top: 1px solid #e7e5e4;
  67. margin: 30px 0;
  68. }
  69. .code-box {
  70. background-color: #f5f5f4;
  71. border: 1px solid #e7e5e4;
  72. border-radius: 8px;
  73. padding: 16px;
  74. margin: 20px 0;
  75. text-align: center;
  76. }
  77. .code {
  78. font-family: 'Courier New', monospace;
  79. font-size: 24px;
  80. font-weight: bold;
  81. color: #1c1917;
  82. letter-spacing: 2px;
  83. }
  84. .footer {
  85. padding: 30px;
  86. text-align: center;
  87. color: #78716c;
  88. font-size: 14px;
  89. background-color: #fafaf9;
  90. }
  91. .footer a {
  92. color: #57534e;
  93. text-decoration: none;
  94. }
  95. .footer a:hover {
  96. text-decoration: underline;
  97. }
  98. .note {
  99. font-size: 14px;
  100. color: #78716c;
  101. margin-top: 20px;
  102. }
  103. </style>
  104. </head>
  105. <body>
  106. <div class="container">
  107. <div class="header">
  108. <a href="{{ .SiteURL }}" class="logo">ShopCall.ai</a>
  109. </div>
  110. <div class="content">
  111. <h1 class="title">Confirm Your Email Address</h1>
  112. <p class="text">Hi there!</p>
  113. <p class="text">Thank you for signing up for ShopCall.ai! To complete your registration and start transforming your e-commerce customer service with AI-powered phone support, please confirm your email address.</p>
  114. <p class="text">Click the button below to verify your account:</p>
  115. <a href="{{ .ConfirmationURL }}" class="button">Confirm Email Address</a>
  116. <div class="divider"></div>
  117. <p class="text">Or use this confirmation code:</p>
  118. <div class="code-box">
  119. <span class="code">{{ .Token }}</span>
  120. </div>
  121. <p class="note">If you didn't create an account with ShopCall.ai, you can safely ignore this email.</p>
  122. <p class="note">This confirmation link will expire in 24 hours for security purposes.</p>
  123. </div>
  124. <div class="footer">
  125. <p>ShopCall.ai - AI Phone Support That Never Sleeps</p>
  126. <p style="margin-top: 10px;">
  127. <a href="{{ .SiteURL }}/about">About</a> •
  128. <a href="{{ .SiteURL }}/privacy">Privacy Policy</a> •
  129. <a href="{{ .SiteURL }}/terms">Terms of Service</a>
  130. </p>
  131. <p style="margin-top: 10px;">© 2025 ShopCall.ai. All rights reserved.</p>
  132. </div>
  133. </div>
  134. </body>
  135. </html>