feat(client): update AuthService to use encrypted login

This commit is contained in:
Joseph Doherty
2026-01-03 08:39:18 -05:00
parent 30153dcbf8
commit 3468402200
5 changed files with 36 additions and 70 deletions
@@ -1,15 +0,0 @@
using System.ComponentModel.DataAnnotations;
namespace JdeScoping.Client.Models;
/// <summary>
/// Login form model with validation.
/// </summary>
public class LoginModel
{
[Required(ErrorMessage = "Username is required")]
public string Username { get; set; } = string.Empty;
[Required(ErrorMessage = "Password is required")]
public string Password { get; set; } = string.Empty;
}