添加项目文件。
This commit is contained in:
26
TightWiki/Views/Profile/Confirm.cshtml
Normal file
26
TightWiki/Views/Profile/Confirm.cshtml
Normal file
@@ -0,0 +1,26 @@
|
||||
@using TightWiki.Models
|
||||
@model TightWiki.Models.ViewModels.Profile.ConfirmViewModel
|
||||
@{
|
||||
Layout = "/Views/Shared/_Layout.cshtml";
|
||||
}
|
||||
|
||||
<div class="card">
|
||||
<div class="card-header">
|
||||
<h3>Account Email Verification</h3>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
@if (!string.IsNullOrEmpty(Model.ErrorMessage))
|
||||
{
|
||||
<div class="alert alert-danger">@Html.Raw(Model.ErrorMessage)</div>
|
||||
}
|
||||
@if (!string.IsNullOrEmpty(Model.SuccessMessage))
|
||||
{
|
||||
<div class="alert alert-success">@Html.Raw(Model.SuccessMessage)</div>
|
||||
}
|
||||
|
||||
<p>
|
||||
Already a member? <a href="@GlobalConfiguration.BasePath/Account/Login">Login</a>.<br />
|
||||
Forgot your password? @Html.ActionLink("Reset it.", "Forgot", "Account").<br />
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user