|
- {# templates/email/team_invite.html.twig #}
- <!DOCTYPE html>
- <html lang="de">
- <head><meta charset="UTF-8"></head>
- <body style="font-family: sans-serif; padding: 32px; color: #1a2a3a; background: #f5f7fa;">
- <div style="max-width: 480px; margin: 0 auto; background: #ffffff; border-radius: 8px; padding: 32px;">
-
- <p style="font-size: 18px; font-weight: bold; margin: 0 0 8px;">
- Du wurdest zu {{ invite.account.name }} eingeladen
- </p>
- <p style="color: #6b7a8d; margin: 0 0 24px;">
- Hallo {{ invite.firstName }},<br>
- du wurdest als <strong>{{ invite.role == 'admin' ? 'Administrator' : (invite.role == 'tracker' ? 'Zeiterfasser' : 'Standard-Nutzer') }}</strong>
- zum Team von <strong>{{ invite.account.name }}</strong> hinzugefügt.
- </p>
-
- <p style="margin: 0 0 24px;">
- Klicke auf den Button, um dein Passwort festzulegen und loszulegen. Der Link ist 7 Tage gültig.
- </p>
-
- <a href="{{ inviteUrl }}"
- style="display:inline-block; background:#e8820a; color:#ffffff; padding:12px 28px;
- border-radius:24px; text-decoration:none; font-weight:bold;">
- Passwort festlegen →
- </a>
-
- <p style="margin: 24px 0 0; font-size: 12px; color: #9aa5b1;">
- Wenn du diese Einladung nicht erwartet hast, kannst du diese E-Mail ignorieren.
- </p>
- </div>
- </body>
- </html>
|