選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

register_email_when_account_exist_template_en-US.html 3.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  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">It looks like you’re signing up with an existing account</p>
  99. <p class="description">Hi, {{account_name}}</p>
  100. <p class="description">
  101. We noticed you tried to sign up, but this email is already registered with an existing account.
  102. Please log in here: </p>
  103. <a href="{{ login_url }}" class="button">Log In</a>
  104. <p class="description">
  105. If you forgot your password, you can reset it here: <a href="{{ reset_password_url }}"
  106. class="reset-btn">Reset Password</a>
  107. </p>
  108. <p class="description">
  109. If you didn’t request this action, you can safely ignore this email.
  110. </p>
  111. </div>
  112. <div class="tip">Please do not reply directly to this email, it is automatically sent by the system.</div>
  113. </body>
  114. </html>