#5 #4 处理枚举和 servers参数

This commit is contained in:
luoyunchong
2020-08-25 02:48:52 +08:00
parent 1d63f2c585
commit 8ea53827f5
28 changed files with 587 additions and 13 deletions

View File

@@ -0,0 +1,23 @@
@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>