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

register_email_when_account_exist_template_en-US.html 2.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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://assets.dify.ai/images/logo.png" alt="Dify Logo" />
  65. </div>
  66. <p class="title">It looks like you’re signing up with an existing account</p>
  67. <p class="description">Hi,
  68. We noticed you tried to sign up, but this email is already registered with an existing account.
  69. Please log in here: </p>
  70. <p class="description">
  71. <a href="{{ login_url }}">Log In</a>
  72. </p>
  73. <p class="description">
  74. If you forgot your password, you can reset it here: </p>
  75. <p class="description">
  76. <a href="{{ reset_password_url }}">Reset Password</a>
  77. </p>
  78. <p class="tips">If you didn’t request this action, you can safely ignore this email.
  79. Need help? Feel free to contact us at support@dify.ai.</p>
  80. </div>
  81. </body>
  82. </html>