- Add LoopFit.Domain with entities (ApplicationUser, Workout, CalorieEntry, VitalData), enums (WorkoutType), and interfaces (IJwtTokenGenerator, IUserRepository, IWorkoutRepository) - Add LoopFit.Application with auth DTOs, service interfaces, and DI setup - Add LoopFit.Infrastructure with EF Core DbContext (PostgreSQL), ASP.NET Core Identity, JWT token generation, and repository implementations - Add AuthController with register/login/me endpoints and JWT Bearer auth - Add MAUI auth services (AuthService, TokenStorageService) and Login/Register Blazor pages
6 lines
127 B
Plaintext
6 lines
127 B
Plaintext
@page "/not-found"
|
|
@layout Layout.MainLayout
|
|
|
|
<h3>Not Found</h3>
|
|
<p>Sorry, the content you are looking for does not exist.</p>
|