invite.html 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <style>
  6. .container {
  7. max-width: 600px;
  8. margin: 0 auto;
  9. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  10. color: #333;
  11. padding: 20px;
  12. }
  13. .header {
  14. background: #2563eb;
  15. color: white;
  16. padding: 20px;
  17. border-radius: 8px;
  18. text-align: center;
  19. }
  20. .content {
  21. background: white;
  22. padding: 30px;
  23. border-radius: 8px;
  24. margin-top: 20px;
  25. box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  26. }
  27. .button {
  28. display: inline-block;
  29. padding: 12px 24px;
  30. background: #2563eb;
  31. color: white;
  32. text-decoration: none;
  33. border-radius: 6px;
  34. margin: 20px 0;
  35. }
  36. .footer {
  37. text-align: center;
  38. color: #666;
  39. font-size: 14px;
  40. margin-top: 30px;
  41. }
  42. </style>
  43. </head>
  44. <body style="background-color: #f3f4f6; margin: 0; padding: 20px;">
  45. <div class="container">
  46. <div class="header">
  47. <h1>You're invited!</h1>
  48. </div>
  49. <div class="content">
  50. <p>Hi there,</p>
  51. <p>You've been invited to join our workspace. Click the button below to accept the invitation and get started.</p>
  52. <a href="{{.URL}}" class="button">Accept Invitation</a>
  53. <p>If the button doesn't work, copy and paste this link into your browser:</p>
  54. <p style="word-break: break-all; color: #666;">{{.URL}}</p>
  55. </div>
  56. <div class="footer">
  57. <p>This invitation expires in 24 hours.</p>
  58. </div>
  59. </div>
  60. </body>
  61. </html>