@page "/login" @using BlazorAnimation @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!

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"); }