mirror of
https://github.com/nsnail/IGeekFan.AspNetCore.Knife4jUI.git
synced 2025-04-15 10:42:50 +08:00
23 lines
536 B
Plaintext
23 lines
536 B
Plaintext
@model OAuth2Integration.AuthServer.Controllers.LoginViewModel
|
|
|
|
<style>
|
|
input {
|
|
display: block;
|
|
}
|
|
</style>
|
|
|
|
<h1>Login</h1>
|
|
<form asp-controller="Account" asp-action="Login">
|
|
<input type="hidden" asp-for="ReturnUrl" />
|
|
<fieldset>
|
|
<label>
|
|
Username:
|
|
<input type="text" asp-for="Username" />
|
|
</label>
|
|
<label>
|
|
Password:
|
|
<input type="text" asp-for="Password" />
|
|
</label>
|
|
</fieldset>
|
|
<button type="submit">Login</button>
|
|
</form> |