- 移除 `UserInfoController`,新增 `UserControllers` 使用 `UserService` - 添加 `UserService` 用于处理用户信息 - 新增 `UserProfile` DTO - 添加数据库迁移以支持用户表结构
27 lines
859 B
Plaintext
27 lines
859 B
Plaintext
@page
|
|
@model ResendEmailConfirmationModel
|
|
@{
|
|
ViewData["Title"] = "Resend email confirmation";
|
|
}
|
|
|
|
<h1>@ViewData["Title"]</h1>
|
|
<h2>Enter your email.</h2>
|
|
<hr />
|
|
<div class="row">
|
|
<div class="col-md-4">
|
|
<form method="post">
|
|
<div asp-validation-summary="All" class="text-danger" role="alert"></div>
|
|
<div class="form-floating mb-3">
|
|
<input asp-for="Input.Email" class="form-control" aria-required="true" placeholder="name@example.com" />
|
|
<label asp-for="Input.Email" class="form-label"></label>
|
|
<span asp-validation-for="Input.Email" class="text-danger"></span>
|
|
</div>
|
|
<button type="submit" class="w-100 btn btn-lg btn-primary">Resend</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
@section Scripts {
|
|
<partial name="_ValidationScriptsPartial" />
|
|
}
|