Add login page

This commit is contained in:
2025-10-09 17:32:56 +09:00
parent 257cd3e35e
commit bb91136d42
3 changed files with 101 additions and 6 deletions

View File

@ -56,7 +56,7 @@
InputModel Input { get; set; } = new();
[SupplyParameterFromQuery]
string? Errors { get; set; }
string? Error { get; set; }
[SupplyParameterFromQuery]
string? ReturnUrl { get; set; }
@ -67,13 +67,13 @@
if (firstRender)
{
if (!string.IsNullOrEmpty(Errors))
if (!string.IsNullOrEmpty(Error))
{
NotificationService.Notify(new NotificationMessage()
{
Severity = NotificationSeverity.Error,
Summary = "Ошибка",
Detail = Errors,
Detail = Error,
Duration = -1d
});
}