shopping-assistant-web-client/ShoppingAssistantWebClient.Web/Pages/Login.cshtml.cs
2023-12-20 10:02:28 +00:00

48 lines
1.1 KiB
C#

using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
using ShoppingAssistantWebClient.Web.Models.Input;
using ShoppingAssistantWebClient.Web.Network;
namespace ShoppingAssistantWebClient.Web.Pages;
public class LoginModel : PageModel
{
[BindProperty]
public LoginInputModel Input { get; set; }
public string ErrorMessage { get; set; }
public AuthenticationService AuthenticationService { get; set; }
public void OnGet()
{
}
public async Task<IActionResult> OnPostAsync()
{
if (!ModelState.IsValid)
{
return Page();
}
if (Input.IsEmailOrPhoneProvided)
{
try
{
await AuthenticationService.LoginAsync(Input);
return RedirectToPage("/");
}
catch (Exception ex)
{
ErrorMessage = "Login failed. Please try again.";
return Page();
}
}
else
{
ErrorMessage = "Please provide an email or phone number.";
return Page();
}
}
}