You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
676 B
16 lines
676 B
@page
|
|
@inject IHtmlLocalizer<AccountResource> L
|
|
@using Microsoft.AspNetCore.Mvc.Localization
|
|
@using Volo.Abp.Account.Localization
|
|
@model LY.MicroService.IdentityServer.Pages.Account.SendEmailConfirmModel
|
|
@inject Volo.Abp.AspNetCore.Mvc.UI.Layout.IPageLayout PageLayout
|
|
<div class="card mt-3 shadow-sm rounded">
|
|
<div class="card-body p-5">
|
|
<h4>@L["EmailConfirm"]</h4>
|
|
<form method="post">
|
|
<abp-input asp-for="Email" readonly="true" />
|
|
<a abp-button="Secondary" asp-page="./Login">@L["Cancel"]</a>
|
|
<abp-button type="submit" button-type="Primary" text="@L["ClickToValidation"].Value"/>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|