Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 

32 righe
1.5 KiB

  1. {# templates/email/password_reset.html.twig #}
  2. <!DOCTYPE html>
  3. <html lang="de">
  4. <head><meta charset="UTF-8"></head>
  5. <body style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background: #dce9f5; margin: 0; padding: 40px 20px;">
  6. <div style="max-width: 540px; margin: 0 auto; background: #fff; border-radius: 16px; padding: 40px; box-shadow: 0 2px 12px rgba(0,60,120,0.08);">
  7. <p style="font-size: 1.2rem; font-weight: 700; color: #1a2a3a; margin: 0 0 8px;">{{ token.account.name }}</p>
  8. <hr style="border: none; border-top: 1px solid #d0d8e0; margin: 0 0 32px;">
  9. <p style="color: #3a4a5a; margin: 0 0 16px;">{{ 'app.email.password_reset.greeting'|trans({'%name%': token.user.firstName}) }}</p>
  10. <p style="color: #3a4a5a; margin: 0 0 24px;">{{ 'app.email.password_reset.body'|trans }}</p>
  11. <div style="text-align: center; margin: 32px 0;">
  12. <a href="{{ resetUrl }}"
  13. style="display: inline-block; background: #f0a500; color: #fff; font-weight: 700;
  14. text-decoration: none; padding: 14px 40px; border-radius: 100px; font-size: 1rem;">
  15. {{ 'app.email.password_reset.btn'|trans }}
  16. </a>
  17. </div>
  18. <p style="color: #7a8a9a; font-size: 0.8rem; margin: 24px 0 0;">
  19. {{ 'app.email.password_reset.expiry'|trans({'%expires%': token.expiresAt|date('d.m.Y H:i')}) }}<br>
  20. {{ 'app.email.password_reset.ignore'|trans }}
  21. </p>
  22. <p style="color: #aab8c6; font-size: 0.75rem; margin: 8px 0 0; word-break: break-all;">
  23. {{ resetUrl }}
  24. </p>
  25. </div>
  26. </body>
  27. </html>