eeg_portal/eeg_frontend/src/app/app.html
Bernhard Müller 838fdb2826 feat(frontend): add responsive design, form validation, toast service and error handling
- Responsive navigation with mobile hamburger menu
- Reactive forms with real-time validation on profile page
- Toast service for success/error/warning messages
- HTTP error interceptor for 401/403/500 handling
- Loading states with spinner animations
2026-07-21 12:08:39 +02:00

8 lines
173 B
HTML

@if (!isDashboardRoute) {
<app-header></app-header>
}
<main class="min-h-[calc(100vh-4rem)] bg-gray-50">
<router-outlet></router-outlet>
</main>
<app-toast></app-toast>