1
0

auth.html 876 B

123456789101112131415161718192021222324252627282930313233
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <title>Auth</title>
  6. <link
  7. rel="stylesheet"
  8. href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"
  9. />
  10. <script src="//code.jquery.com/jquery-2.2.4.min.js"></script>
  11. <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
  12. </head>
  13. <body>
  14. <div class="container">
  15. <div class="jumbotron">
  16. <form action="/oauth2/authorize" method="POST">
  17. <h1>Authorize</h1>
  18. <p>The client would like to perform actions on your behalf.</p>
  19. <p>
  20. <button
  21. type="submit"
  22. class="btn btn-primary btn-lg"
  23. style="width:200px;"
  24. >
  25. Allow
  26. </button>
  27. </p>
  28. </form>
  29. </div>
  30. </div>
  31. </body>
  32. </html>