|
- {# templates/email/registration_confirm.html.twig #}
- <!DOCTYPE html>
- <html lang="de">
- <head><meta charset="UTF-8"></head>
- <body style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background: #dce9f5; margin: 0; padding: 40px 20px;">
- <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);">
-
- <p style="font-size: 1.2rem; font-weight: 700; color: #1a2a3a; margin: 0 0 8px;">spawntree Timetracker</p>
- <hr style="border: none; border-top: 1px solid #d0d8e0; margin: 0 0 32px;">
-
- <p style="color: #3a4a5a; margin: 0 0 16px;">Hallo {{ token.firstName }},</p>
- <p style="color: #3a4a5a; margin: 0 0 24px;">
- bitte bestätige deine Registrierung für <strong>{{ token.companyName }}</strong>
- mit einem Klick auf den Button.
- </p>
-
- <div style="text-align: center; margin: 32px 0;">
- <a href="{{ verifyUrl }}"
- style="display: inline-block; background: #f0a500; color: #fff; font-weight: 700;
- text-decoration: none; padding: 14px 40px; border-radius: 100px; font-size: 1rem;">
- E-Mail bestätigen
- </a>
- </div>
-
- <p style="color: #7a8a9a; font-size: 0.8rem; margin: 24px 0 0;">
- Der Link ist 24 Stunden gültig (bis {{ token.expiresAt|date('d.m.Y H:i') }} Uhr).<br>
- Falls du dich nicht registriert hast, kannst du diese E-Mail ignorieren.
- </p>
- <p style="color: #aab8c6; font-size: 0.75rem; margin: 8px 0 0; word-break: break-all;">
- {{ verifyUrl }}
- </p>
-
- </div>
- </body>
- </html>
|