mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 11:04:25 +00:00
85 lines
3.5 KiB
Plaintext
85 lines
3.5 KiB
Plaintext
@page
|
|
@model LoginModel
|
|
|
|
@{
|
|
ViewData["Title"] = "Log in";
|
|
}
|
|
<h1>@ViewData["Title"]</h1>
|
|
<div class="row">
|
|
<div class="col-md-4">
|
|
<section>
|
|
<form id="account" method="post">
|
|
<h4>Use a local account to log in.</h4>
|
|
<hr />
|
|
<div asp-validation-summary="All" class="text-danger"></div>
|
|
<div class="form-group">
|
|
<label asp-for="Input.Username"></label>
|
|
<input asp-for="Input.Username" class="form-control" />
|
|
<span asp-validation-for="Input.Username" class="text-danger"></span>
|
|
</div>
|
|
<div class="form-group">
|
|
<label asp-for="Input.Password"></label>
|
|
<input asp-for="Input.Password" class="form-control" />
|
|
<span asp-validation-for="Input.Password" class="text-danger"></span>
|
|
</div>
|
|
<div class="form-group">
|
|
<div class="checkbox">
|
|
<label asp-for="Input.RememberMe">
|
|
<input asp-for="Input.RememberMe" />
|
|
@Html.DisplayNameFor(m => m.Input.RememberMe)
|
|
</label>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<button class="btn btn-primary" type="submit">Log in</button>
|
|
</div>
|
|
<div class="form-group">
|
|
<p>
|
|
<a asp-page="./ForgotPassword" id="forgot-password">Forgot your password?</a>
|
|
</p>
|
|
<p>
|
|
<a asp-page="./Register" asp-route-returnUrl="@Model.ReturnUrl">Register as a new user</a>
|
|
</p>
|
|
<p>
|
|
<a asp-page="./ResendEmailConfirmation" id="resend-confirmation">Resend email confirmation</a>
|
|
</p>
|
|
</div>
|
|
</form>
|
|
</section>
|
|
</div>
|
|
<div class="col-md-6 col-md-offset-2">
|
|
<section>
|
|
<h4>Use another service to log in.</h4>
|
|
<hr />
|
|
@{
|
|
if((Model.ExternalLogins?.Count ?? 0) == 0)
|
|
{
|
|
<div>
|
|
<p>
|
|
There are no external authentication services configured. See
|
|
<a href="https://go.microsoft.com/fwlink/?LinkID=532715">this article</a>
|
|
for details on setting up this ASP.NET application to support logging in via external services.
|
|
</p>
|
|
</div>
|
|
}
|
|
else
|
|
{
|
|
<form asp-page="./ExternalLogin" asp-route-returnUrl="@Model.ReturnUrl" class="form-horizontal" id="external-account" method="post">
|
|
<div>
|
|
<p>
|
|
@foreach(var provider in Model.ExternalLogins)
|
|
{
|
|
<button class="btn btn-primary" name="provider" title="Log in using your @provider.DisplayName account" type="submit" value="@provider.Name">@provider.DisplayName</button>
|
|
}
|
|
</p>
|
|
</div>
|
|
</form>
|
|
}
|
|
}
|
|
</section>
|
|
</div>
|
|
</div>
|
|
|
|
@section Scripts {
|
|
<partial name="_ValidationScriptsPartial" />
|
|
} |