Refinements to auth

This commit is contained in:
2025-11-23 11:04:20 -05:00
parent d188d4fbd1
commit 87be3e9c68
3 changed files with 41 additions and 10 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ namespace WebApp.Authentication
{
[HttpPost]
[AllowAnonymous]
public async Task<IActionResult> CookieLogin()
public async Task<IActionResult> CookieLogin(string email, string password)
{
// Based on: https://www.codeproject.com/articles/Understanding-authentication-in-Blazor-and-ASP-NET
// TODO: Fix this up