Login.cshtml 582 B

1234567891011121314151617181920212223
  1. @{
  2. Layout = null;
  3. }
  4. <!DOCTYPE html>
  5. <html>
  6. <head>
  7. <meta name="viewport" content="width=device-width" />
  8. <title>Login</title>
  9. </head>
  10. <body>
  11. <div align="center">
  12. <h1>统一认证登录中心</h1>
  13. <form action="/Account/Login" method="post">
  14. 用户名:<input type="text" name="userName" /><br />
  15. 密 码:<input type="password" name="password" /><input type="hidden" name="returnUrl" value="@ViewData["returnUrl"]" /> <br />
  16. <input type="submit" value="登录" />
  17. </form>
  18. </div>
  19. </body>
  20. </html>