reset_password_mail_template_zh-CN.html 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. body {
  6. font-family: 'Arial', sans-serif;
  7. line-height: 16pt;
  8. color: #101828;
  9. background-color: #e9ebf0;
  10. margin: 0;
  11. padding: 0;
  12. }
  13. .container {
  14. width: 600px;
  15. height: 360px;
  16. margin: 40px auto;
  17. padding: 36px 48px;
  18. background-color: #fcfcfd;
  19. border-radius: 16px;
  20. border: 1px solid #ffffff;
  21. box-shadow: 0 2px 4px -2px rgba(9, 9, 11, 0.08);
  22. }
  23. .header {
  24. margin-bottom: 24px;
  25. }
  26. .header img {
  27. max-width: 100px;
  28. height: auto;
  29. }
  30. .title {
  31. font-weight: 600;
  32. font-size: 24px;
  33. line-height: 28.8px;
  34. }
  35. .description {
  36. font-size: 13px;
  37. line-height: 16px;
  38. color: #676f83;
  39. margin-top: 12px;
  40. }
  41. .code-content {
  42. padding: 16px 32px;
  43. text-align: center;
  44. border-radius: 16px;
  45. background-color: #f2f4f7;
  46. margin: 16px auto;
  47. }
  48. .code {
  49. line-height: 36px;
  50. font-weight: 700;
  51. font-size: 30px;
  52. }
  53. .tips {
  54. line-height: 16px;
  55. color: #676f83;
  56. font-size: 13px;
  57. }
  58. </style>
  59. </head>
  60. <body>
  61. <div class="container">
  62. <div class="header">
  63. <!-- Optional: Add a logo or a header image here -->
  64. <img src="https://cloud.dify.ai/logo/logo-site.png" alt="Dify Logo" />
  65. </div>
  66. <p class="title">设置您的 Dify 账户密码</p>
  67. <p class="description">复制并粘贴此验证码,注意验证码仅在接下来的 5 分钟内有效。</p>
  68. <div class="code-content">
  69. <span class="code">{{code}}</span>
  70. </div>
  71. <p class="tips">如果您没有请求,请不要担心。您可以安全地忽略此电子邮件。</p>
  72. </div>
  73. </body>
  74. </html>