65 lines
2.4 KiB
Plaintext
65 lines
2.4 KiB
Plaintext
@page "/renewpassword"
|
|
@inherits BasePageComponent
|
|
@using TIAM.Models.Dtos.Users
|
|
@using TIAMSharedUI.Shared.Components.BaseComponents
|
|
@using BlazorAnimation
|
|
@using TIAMWebApp.Shared.Application.Models.PageModels;
|
|
@using TIAMSharedUI.Pages.Components;
|
|
@using TIAMSharedUI.Pages.User.CardComponents
|
|
|
|
<PageTitle>Forgot password</PageTitle>
|
|
|
|
<div class="text-center m-5">
|
|
<h1>Renew password</h1>
|
|
<h2 style="font-size:small">Good to see you again!</h2>
|
|
</div>
|
|
|
|
|
|
<div class="container mt-3">
|
|
<div class="row d-flex justify-content-center align-items-center h-100">
|
|
<div class="col-12 col-sm-6 px-5">
|
|
<Animation Effect="@Effect.FadeIn" Speed="@Speed.Slow" Delay="@TimeSpan.FromMilliseconds(250)">
|
|
<div class="card glass inputwizardwrapper my-5">
|
|
|
|
<div class="wrapper">
|
|
<div class="my-logo">
|
|
<img src="_content/TIAMSharedUI/images/png-logo-0.png" alt="">
|
|
</div>
|
|
<div class="text-center mt-4 name">
|
|
@_localizer["LoginTitleText"]
|
|
</div>
|
|
<UserCardComponent Context="user" IsForgotten="true" />
|
|
<div class="text-center fs-6">
|
|
No account yet? <a href="register">Sign up here!</a>
|
|
</div>
|
|
<div class="text-center fs-6">
|
|
Figured it out? <a href="login">Back to login!</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</Animation>
|
|
</div>
|
|
<div class="col-12 col-sm-6 px-5">
|
|
<Animation Effect="@Effect.FadeIn" Speed="@Speed.Fast" Delay="@TimeSpan.FromMilliseconds(250)">
|
|
<p>
|
|
|
|
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.
|
|
|
|
</p>
|
|
</Animation>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
@code {
|
|
|
|
[Parameter] public string renewToken { get; set; }
|
|
[Parameter] public string emailAddress { get; set; }
|
|
|
|
private UserModelDtoDetail user;
|
|
protected override Task OnInitializedAsync()
|
|
{
|
|
return base.OnInitializedAsync();
|
|
}
|
|
}
|