- 移除 `UserInfoController`,新增 `UserControllers` 使用 `UserService` - 添加 `UserService` 用于处理用户信息 - 新增 `UserProfile` DTO - 添加数据库迁移以支持用户表结构
24 lines
582 B
Plaintext
24 lines
582 B
Plaintext
@page
|
|
@model RegisterConfirmationModel
|
|
@{
|
|
ViewData["Title"] = "Register confirmation";
|
|
}
|
|
|
|
<h1>@ViewData["Title"]</h1>
|
|
@{
|
|
if (@Model.DisplayConfirmAccountLink)
|
|
{
|
|
<p>
|
|
This app does not currently have a real email sender registered, see <a href="https://aka.ms/aspaccountconf">these docs</a> for how to configure a real email sender.
|
|
Normally this would be emailed: <a id="confirm-link" href="@Model.EmailConfirmationUrl">Click here to confirm your account</a>
|
|
</p>
|
|
}
|
|
else
|
|
{
|
|
<p>
|
|
Please check your email to confirm your account.
|
|
</p>
|
|
}
|
|
}
|
|
|