CaiYouHui后端fastapi实现

verify_email.html 2.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Verify Your Email</title>
  7. <style>
  8. body {
  9. font-family: Arial, sans-serif;
  10. line-height: 1.6;
  11. color: #333;
  12. max-width: 600px;
  13. margin: 0 auto;
  14. padding: 20px;
  15. }
  16. .container {
  17. background-color: #f9f9f9;
  18. border-radius: 10px;
  19. padding: 30px;
  20. margin-top: 20px;
  21. }
  22. .header {
  23. text-align: center;
  24. margin-bottom: 30px;
  25. }
  26. .logo {
  27. max-width: 150px;
  28. margin-bottom: 20px;
  29. }
  30. .button {
  31. display: inline-block;
  32. background-color: #4CAF50;
  33. color: white;
  34. padding: 12px 24px;
  35. text-decoration: none;
  36. border-radius: 5px;
  37. margin: 20px 0;
  38. }
  39. .code {
  40. background-color: #f0f0f0;
  41. padding: 10px;
  42. border-radius: 5px;
  43. font-family: monospace;
  44. font-size: 18px;
  45. text-align: center;
  46. margin: 20px 0;
  47. }
  48. .footer {
  49. margin-top: 30px;
  50. text-align: center;
  51. color: #777;
  52. font-size: 12px;
  53. }
  54. </style>
  55. </head>
  56. <body>
  57. <div class="container">
  58. <div class="header">
  59. <h1>Verify Your Email Address</h1>
  60. </div>
  61. <p>Hello <strong>{{ username }}</strong>,</p>
  62. <p>Thank you for registering! Please verify your email address by clicking the button below:</p>
  63. <div style="text-align: center;">
  64. <a href="{{ verification_url }}" class="button">Verify Email Address</a>
  65. </div>
  66. {% if verification_code %}
  67. <p>Or enter this verification code on the verification page:</p>
  68. <div class="code">{{ verification_code }}</div>
  69. {% endif %}
  70. <p>This link will expire in 24 hours. If you didn't create an account, you can safely ignore this email.</p>
  71. <p>If the button doesn't work, copy and paste this URL into your browser:</p>
  72. <p><small>{{ verification_url }}</small></p>
  73. <div class="footer">
  74. <p>© 2024 Your Company. All rights reserved.</p>
  75. <p>This is an automated message, please do not reply to this email.</p>
  76. </div>
  77. </div>
  78. </body>
  79. </html>