55 lines
2.1 KiB
Plaintext
55 lines
2.1 KiB
Plaintext
@page
|
|
@using System.Text.Encodings.Web
|
|
@using TightWiki.Models
|
|
@model LoginModel
|
|
@{
|
|
var sessionState = ViewData["SessionState"] as TightWiki.SessionState ?? throw new Exception("Wiki State Context cannot be null.");
|
|
}
|
|
|
|
<style>
|
|
#forgot-password {
|
|
text-decoration: none;
|
|
}
|
|
</style>
|
|
|
|
<div class="row">
|
|
<div class="col-sm-12 col-md-8 col-lg-4">
|
|
<section>
|
|
<form id="account" method="post">
|
|
<div asp-validation-summary="ModelOnly" class="text-danger" role="alert"></div>
|
|
<div class="form-floating mb-3">
|
|
<input asp-for="Input.Email" class="form-control" autocomplete="username" 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>
|
|
<div class="form-floating mb-3">
|
|
<input asp-for="Input.Password" class="form-control" autocomplete="current-password" aria-required="true" placeholder="password" />
|
|
<label asp-for="Input.Password" class="form-label">密码</label>
|
|
<span asp-validation-for="Input.Password" class="text-danger"></span>
|
|
</div>
|
|
<div class="checkbox mb-3">
|
|
<label asp-for="Input.RememberMe" class="form-label">
|
|
<input class="form-check-input" asp-for="Input.RememberMe" />
|
|
记住账号
|
|
</label>
|
|
</div>
|
|
<div>
|
|
<button id="login-submit" type="submit" class="w-100 btn btn-lg btn-primary">登 录</button>
|
|
<br />
|
|
</div>
|
|
<div>
|
|
<p style="margin-top:5px;">
|
|
<a id="forgot-password" asp-page="./ForgotPassword">忘记密码?</a>
|
|
<br />
|
|
<br />
|
|
</p>
|
|
</div>
|
|
</form>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
|
|
@section Scripts {
|
|
<partial name="_ValidationScriptsPartial" />
|
|
}
|