login.html 1.0 KB

1234567891011121314151617181920212223242526272829
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Login</title>
  6. <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
  7. <script src="//code.jquery.com/jquery-2.2.4.min.js"></script>
  8. <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
  9. </head>
  10. <body>
  11. <div class="container">
  12. <h1>Login In</h1>
  13. <form action="/oauth2/login" method="POST">
  14. <div class="form-group">
  15. <label for="username">User Name</label>
  16. <input type="text" class="form-control" name="username" required placeholder="Please enter your user name">
  17. </div>
  18. <div class="form-group">
  19. <label for="password">Password</label>
  20. <input type="password" class="form-control" name="password" placeholder="Please enter your password">
  21. </div>
  22. <button type="submit" class="btn btn-success">Login</button>
  23. </form>
  24. </div>
  25. </body>
  26. </html>