@page "/login" @using System.IdentityModel.Tokens.Jwt; @using System.Security.Claims; @using BlazorAnimation @using Newtonsoft.Json.Linq; @using System.Text.Json; @using System.Reflection; @using TIAMWebApp.Shared.Application.Interfaces; @using TIAMWebApp.Shared.Application.Models.PageModels; @using TIAMSharedUI.Pages.Components; @using TIAMWebApp.Shared.Application.Models.ClientSide; @using TIAMWebApp.Shared.Application.Models; @using TIAMWebApp.Shared.Application.Utility; @using AyCode.Interfaces.StorageHandlers; Login

Login

Good to see you again!

@localizer["LoginTitleText"]
@switch (currentStep) { case 1: ; break; case 2: ; break; }

@currentStep

@{ if (!loggedIn) {

@localizer["LoginEmail"]: @loginModel.Email

@loginModel.Password

} }
No account yet? Sign up here!

Welcome back to Budapest Airport Transfer Services! We're delighted to have you return to our platform. Please sign in to access your account and manage your bookings effortlessly. If you're new here, feel free to create an account to unlock exclusive benefits and enjoy a seamless booking experience.

@code { LoginModel loginModel = new LoginModel("test@tiam.hu", "test1234"); }