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.
17 lines
698 B
17 lines
698 B
@page
|
|
@inject IHtmlLocalizer<AccountResource> L
|
|
@using Microsoft.AspNetCore.Mvc.Localization
|
|
@using Volo.Abp.Account.Localization
|
|
@model LY.MicroService.Applications.Single.Pages.Account.EmailConfirmModel
|
|
@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="UserId"/>
|
|
<abp-input asp-for="ConfirmToken"/>
|
|
<a abp-button="Secondary" asp-page="./Login">@L["Cancel"]</a>
|
|
<abp-button type="submit" button-type="Primary" text="@L["Submit"].Value"/>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|