Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

transfer_workspace_owner_confirm_template_en-US.html 3.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  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: 504px;
  15. height: 600px;
  16. margin: 40px auto;
  17. padding: 0 48px;
  18. background-color: #fcfcfd;
  19. border-radius: 16px;
  20. border: 1px solid #ffffff;
  21. box-shadow: 0px 3px 10px -2px rgba(9, 9, 11, 0.08), 0px 2px 4px -2px rgba(9, 9, 11, 0.06);
  22. }
  23. .header {
  24. padding-top: 36px;
  25. padding-bottom: 24px;
  26. }
  27. .header img {
  28. max-width: 63px;
  29. height: auto;
  30. }
  31. .title {
  32. margin: 0;
  33. padding-top: 8px;
  34. padding-bottom: 16px;
  35. color: #101828;
  36. font-size: 24px;
  37. font-family: Inter;
  38. font-style: normal;
  39. font-weight: 600;
  40. line-height: 120%; /* 28.8px */
  41. }
  42. .description {
  43. color: #354052;
  44. font-size: 14px;
  45. font-family: Inter;
  46. font-style: normal;
  47. font-weight: 400;
  48. line-height: 20px; /* 142.857% */
  49. letter-spacing: -0.07px;
  50. }
  51. .content1 {
  52. margin: 0;
  53. padding-top: 16px;
  54. padding-bottom: 12px;
  55. }
  56. .content2 {
  57. margin: 0;
  58. }
  59. .content3 {
  60. margin: 0;
  61. padding-bottom: 12px;
  62. }
  63. .code-content {
  64. margin-bottom: 8px;
  65. padding: 16px 32px;
  66. text-align: center;
  67. border-radius: 16px;
  68. background-color: #f2f4f7;
  69. }
  70. .code {
  71. color: #101828;
  72. font-family: Inter;
  73. font-size: 30px;
  74. font-style: normal;
  75. font-weight: 700;
  76. line-height: 36px;
  77. }
  78. .warning {
  79. padding-top: 12px;
  80. padding-bottom: 4px;
  81. color: #101828;
  82. font-family: Inter;
  83. font-size: 14px;
  84. font-style: normal;
  85. font-weight: 600;
  86. line-height: 20px; /* 142.857% */
  87. }
  88. .warningList {
  89. margin: 0;
  90. padding-left: 21px;
  91. color: #354052;
  92. font-family: Inter;
  93. font-size: 14px;
  94. font-style: normal;
  95. font-weight: 400;
  96. line-height: 20px; /* 142.857% */
  97. letter-spacing: -0.07px;
  98. }
  99. .tips {
  100. margin: 0;
  101. padding-top: 12px;
  102. padding-bottom: 16px;
  103. color: #354052;
  104. font-size: 14px;
  105. font-family: Inter;
  106. font-style: normal;
  107. font-weight: 400;
  108. line-height: 20px; /* 142.857% */
  109. letter-spacing: -0.07px;
  110. }
  111. </style>
  112. </head>
  113. <body>
  114. <div class="container">
  115. <div class="header">
  116. <!-- Optional: Add a logo or a header image here -->
  117. <img src="https://assets.dify.ai/images/logo.png" alt="Dify Logo" />
  118. </div>
  119. <p class="title">Verify Your Request to Transfer Workspace Ownership</p>
  120. <div class="description">
  121. <p class="content1">We received a request to transfer ownership of your workspace “{{WorkspaceName}}”.</p>
  122. <p class="content2">To confirm this action, please use the verification code below.</p>
  123. <p class="content3">This code will only be valid for the next 5 minutes:</p>
  124. </div>
  125. <div class="code-content">
  126. <span class="code">{{code}}</span>
  127. </div>
  128. <div class="warning">Please note:</div>
  129. <ul class="warningList">
  130. <li>The ownership transfer will take effect immediately once confirmed and cannot be undone.</li>
  131. <li>You’ll become an admin member, and the new owner will have full control of the workspace.</li>
  132. </ul>
  133. <p class="tips">If you didn’t make this request, please ignore this email or contact support immediately.</p>
  134. </div>
  135. </body>
  136. </html>