identifier_request.html 484 B

12345678910111213141516171819202122
  1. <html>
  2. <head>
  3. <title>OpenID Authentication</title>
  4. </head>
  5. <body>
  6. <h1>OpenID Authentication</h1>
  7. <form method="post">
  8. <label for="openid_url">OpenID Identifier (URL):</label>
  9. <input type="url" id="openid_url" name="openid_url">
  10. <input type="submit" value="Authenticate">
  11. </form>
  12. <script>
  13. window.onload = function(){
  14. var openid_url = document.getElementById('openid_url');
  15. openid_url.focus();
  16. openid_url.select();
  17. }
  18. </script>
  19. </body>
  20. </html>