 b24beb3154
			
		
	
	
		b24beb3154
		
	
	
	
	
		
			
			This commit integrates ASP.NET Core Identity into the application to enable user registration, login, and management. This lays the groundwork for securing data per user.
**Key Changes:**
*   **DbContext Configuration:**
    *   Modified `ApplicationDbContext.cs` to inherit from `IdentityDbContext<IdentityUser>`.
    *   Removed an unnecessary `using` statement from `ApplicationDbContext.cs`.
*   **Program.cs Setup:**
    *   Configured `AddDefaultIdentity<IdentityUser>` with `AddEntityFrameworkStores<ApplicationDbContext>()` to register Identity services.
    *   Ensured correct ordering of `UseAuthentication()` and `UseAuthorization()` middleware.
    *   Added `app.MapRazorPages()` to enable the Identity UI pages.
    *   Verified core package versions in `turf_tasker.csproj` for consistency across EF Core and Identity components (`8.0.6`).
*   **Identity UI:**
    *   Scaffolded ASP.NET Core Identity pages (Login, Register, Manage, etc.) to provide the user interface for authentication.
    *   Added a `_LoginPartial.cshtml` partial view to the `Views/Shared` folder.
    *   Rendered `_LoginPartial` in `Views/Shared/_Layout.cshtml` to display login/register/logout links in the navigation bar.
*   **Migrations:**
    *   Created and applied a new migration (`AddIdentitySchema`) to create the necessary ASP.NET Core Identity database tables (e.g., `AspNetUsers`, `AspNetRoles`).
		
	
			
		
			
				
	
	
		
			53 lines
		
	
	
		
			No EOL
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			No EOL
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="en">
 | |
| <head>
 | |
|     <meta charset="utf-8" />
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
 | |
|     <title>@ViewData["Title"] - MowLog</title>
 | |
|     <link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.min.css" />
 | |
|     @await RenderSectionAsync("Scripts", required: false)
 | |
|     @await RenderSectionAsync("Styles", required: false)
 | |
|     <link rel="stylesheet" href="~/css/site.css" asp-append-version="true" />
 | |
|     <link rel="stylesheet" href="~/MowLog.styles.css" asp-append-version="true" />
 | |
| </head>
 | |
| <body>
 | |
|     <header>
 | |
|         <nav class="navbar navbar-expand-sm navbar-toggleable-sm border-bottom box-shadow mb-3 navbar-custom">
 | |
|             <div class="container-fluid">
 | |
|                 <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target=".navbar-collapse" aria-controls="navbarSupportedContent"
 | |
|                         aria-expanded="false" aria-label="Toggle navigation">
 | |
|                     <span class="navbar-toggler-icon"></span>
 | |
|                 </button>
 | |
|                 <div class="navbar-collapse collapse d-sm-inline-flex justify-content-between">
 | |
|                     <ul class="navbar-nav flex-grow-1">
 | |
|                         <li class="nav-item">
 | |
|                             <a class="nav-link" asp-area="" asp-controller="Home" asp-action="Index">Dashboard</a>
 | |
|                         </li>
 | |
|                         <li class="nav-item">
 | |
|                             <a class="nav-link" asp-area="" asp-controller="LawnCareEvents" asp-action="Index">Mow Log</a>
 | |
|                         </li>
 | |
|                         <li class="nav-item">
 | |
|                             <a class="nav-link" asp-area="" asp-controller="LawnCareTip" asp-action="Index">Lawn Tips</a>
 | |
|                         </li>
 | |
|                     </ul>
 | |
|                 </div>
 | |
|             </div>
 | |
|         </nav>
 | |
|         <partial name="_LoginPartial" />
 | |
|     </header>
 | |
|     <div class="container">
 | |
|         <main role="main" class="pb-3">
 | |
|             @RenderBody()
 | |
|         </main>
 | |
|     </div>
 | |
| 
 | |
|     <footer class="border-top footer text-muted">
 | |
|         <div class="container">
 | |
|             © 2025 - MowLog - <a asp-area="" asp-controller="Home" asp-action="Privacy">Privacy</a>
 | |
|         </div>
 | |
|     </footer>
 | |
|     <script src="~/lib/jquery/dist/jquery.min.js"></script>
 | |
|     <script src="~/lib/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
 | |
|     <script src="~/js/site.js" asp-append-version="true"></script>
 | |
| </body>
 | |
| </html> |