1a7ef09805
Dashboard: - ApexCharts bar chart (income vs fixed costs vs expenses) and donut chart - KPI cards: income, fixed costs, savings rate with configurable goal - Greeting with time-of-day and locale-aware date/time display Authentication & security: - Email-based login (no username), case-insensitive lookup - JWT access/refresh tokens with rotation and blacklist - TOTP 2FA with QR code, backup codes (copy + PDF export) - 2FA recovery via email code - Cloudflare Turnstile CAPTCHA on login and register Email flows: - Email verification on registration (24h token) - Password reset flow (15min token, anti-enumeration) - Brevo SMTP integration with HTML + plaintext email templates - Notification emails: 2FA recovery, password changed, email changed Settings page: - 2FA management (enable/disable, QR, backup codes) - Active sessions list with per-device revoke - Data export: ZIP with 6 PDFs via fpdf2 - Notification preferences (3 toggles) - Danger zone: account deletion with mandatory export + confirmation phrase UI & layout: - Sidebar with collapsible/flyout mode, Angular signal-based dropdowns - Dark mode (class-based), language switcher (DE/FR/IT/EN) - Mobile-responsive layout with touch-friendly targets - Roboto font via @fontsource (GDPR-compliant, no Google CDN) - Pure Tailwind CSS v3 Infrastructure: - Forgejo Actions CI/CD pipeline (auto-deploy on push to main) - Gunicorn + Nginx + PostgreSQL production setup - Rate limiting, HSTS, secure cookies, CSRF protection
36 lines
1.4 KiB
HTML
36 lines
1.4 KiB
HTML
{% extends "emails/base.html" %}
|
||
|
||
{% block subject %}Armarium – Passwort zurücksetzen{% endblock %}
|
||
|
||
{% block body %}
|
||
<p style="margin:0 0 20px;font-size:15px;color:#374151;line-height:1.6;">Hallo,</p>
|
||
|
||
<p style="margin:0 0 24px;font-size:15px;color:#374151;line-height:1.6;">
|
||
Du hast eine Anfrage zum Zurücksetzen deines Passworts gestellt.
|
||
Klicke auf den Button, um ein neues Passwort zu wählen:
|
||
</p>
|
||
|
||
<table role="presentation" cellpadding="0" cellspacing="0" style="margin:0 0 28px;">
|
||
<tr>
|
||
<td style="border-radius:8px;background-color:#7c3aed;">
|
||
<a href="{{ link }}" target="_blank"
|
||
style="display:inline-block;padding:14px 28px;font-size:15px;font-weight:600;color:#ffffff;text-decoration:none;border-radius:8px;">
|
||
Neues Passwort setzen
|
||
</a>
|
||
</td>
|
||
</tr>
|
||
</table>
|
||
|
||
<p style="margin:0 0 8px;font-size:13px;color:#6b7280;line-height:1.6;">
|
||
Gültig für <strong>15 Minuten</strong>. Falls der Button nicht funktioniert, kopiere diesen Link:
|
||
</p>
|
||
<p style="margin:0 0 24px;font-size:12px;color:#7c3aed;line-height:1.6;word-break:break-all;">{{ link }}</p>
|
||
|
||
<p style="margin:0 0 24px;font-size:13px;color:#6b7280;line-height:1.6;">
|
||
Falls du diese Anfrage nicht gestellt hast, ignoriere diese E-Mail.
|
||
Dein Passwort bleibt unverändert.
|
||
</p>
|
||
|
||
<p style="margin:0;font-size:15px;color:#374151;line-height:1.6;">– Das Armarium-Team</p>
|
||
{% endblock %}
|