You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

register_email_when_account_exist_template_zh-CN.html 3.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. body {
  6. font-family: 'Arial', sans-serif;
  7. color: #101828;
  8. background-color: #e9ebf0;
  9. margin: 0;
  10. padding: 0;
  11. }
  12. .container {
  13. width: 600px;
  14. margin: 80px auto 0 auto;
  15. padding: 36px 48px 52px 48px;
  16. background-color: #fcfcfd;
  17. border-radius: 16px;
  18. border: 1px solid #ffffff;
  19. box-shadow: 0 3px 10px -2px rgba(9, 9, 11, 0.08), 0 2px 4px -2px rgba(9, 9, 11, 0.06);
  20. }
  21. .header {
  22. margin-bottom: 40px;
  23. }
  24. .header img {
  25. max-width: 100px;
  26. height: auto;
  27. }
  28. .title {
  29. margin-bottom: 32px;
  30. font-weight: 600;
  31. font-size: 24px;
  32. line-height: 1.2;
  33. color: #101828;
  34. }
  35. .description {
  36. margin-top: 0;
  37. margin-bottom: 12px;
  38. font-size: 14px;
  39. line-height: 20px;
  40. color: #676f83;
  41. }
  42. .code-content {
  43. padding: 16px 32px;
  44. text-align: center;
  45. border-radius: 16px;
  46. background-color: #f2f4f7;
  47. margin: 16px auto;
  48. }
  49. .code {
  50. line-height: 36px;
  51. font-weight: 700;
  52. font-size: 30px;
  53. }
  54. .button {
  55. display: block;
  56. background: #2563eb;
  57. color: #fff !important;
  58. text-decoration: none;
  59. font-weight: 600;
  60. border-radius: 10px;
  61. border: 0.5px solid rgba(16, 24, 40, 0.04);
  62. height: 36px;
  63. line-height: 36px;
  64. text-align: center;
  65. font-size: 14px;
  66. margin-top: 12px;
  67. margin-bottom: 20px;
  68. box-shadow: 0 -6px 12px -4px rgba(9, 9, 11, 0.08) inset, 0 0 1px 0 rgba(255, 255, 255, 0.16) inset, 0 0.5px 0 0 rgba(255, 255, 255, 0.08) inset, 0 2px 2px -1px rgba(0, 0, 0, 0.12), 0 1px 1px -1px rgba(0, 0, 0, 0.12), 0 0 0 0.5px rgba(9, 9, 11, 0.05);
  69. }
  70. .reset-btn {
  71. color: #155AEF;
  72. text-decoration: none;
  73. font-weight: 500;
  74. }
  75. .support {
  76. color: #155AEF;
  77. text-decoration: none;
  78. }
  79. .support:hover {
  80. text-decoration: underline;
  81. }
  82. .tip {
  83. margin-top: 20px;
  84. color: #676F83;
  85. text-align: center;
  86. font-size: 12px;
  87. font-weight: 400;
  88. line-height: 16px;
  89. }
  90. </style>
  91. </head>
  92. <body>
  93. <div class="container">
  94. <div class="header">
  95. <!-- Optional: Add a logo or a header image here -->
  96. <img src="https://assets.dify.ai/images/logo.png" alt="Dify Logo" />
  97. </div>
  98. <p class="title">您似乎正在使用现有账户注册</p>
  99. <p class="description">您好,{{account_name}}</p>
  100. <p class="description">
  101. 我们注意到您尝试注册,但此电子邮件已注册。
  102. 请在此登录: </p>
  103. <a href="{{ login_url }}" class="button">登录</a>
  104. <p class="description">
  105. 如果您忘记了密码,可以在此重置: <a href="{{ reset_password_url }}" class="reset-btn">重置密码</a>
  106. </p>
  107. <p class="description">如果您没有请求此操作,您可以安全地忽略此电子邮件。</p>
  108. </div>
  109. <div class="tip">请不要直接回复此电子邮件,它是由系统自动发送的。</div>
  110. </body>
  111. </html>