@page "/login" @inherits BasePageComponent @using BlazorAnimation @using TIAMSharedUI.Shared.Components.BaseComponents @using TIAMWebApp.Shared.Application.Models.PageModels; @using TIAMSharedUI.Pages.Components 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!
Forgot your password? Click 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"); LoginModel _loginModel = new LoginModel("", ""); }