index.html 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. <html>
  2. <head>
  3. <link rel="stylesheet" type="text/css" href="Captive portal.css" />
  4. <title>Captive portal</title>
  5. </head>
  6. <body>
  7. <div class="wrapper">
  8. <h1>Corendon<span>Dutch airlines</span> </h1>
  9. <h2>Welcome by <span>Corendon</span>'s captive portal, sign in for WiFi.</h2>
  10. <div class="content">
  11. <div id="form_wrapper" class="form_wrapper">
  12. <form class="login active">
  13. <h3>Sign in</h3>
  14. <div>
  15. <label>Ticket Number:</label>
  16. <input type="text" />
  17. <span class="error">This is an error</span>
  18. </div>
  19. <div>
  20. <label>Password:</label>
  21. <input type="password" id="password" />
  22. <span class="error">This is an error</span>
  23. </div>
  24. <div class="bottom">
  25. <div class="remember"><input type="checkbox" onchange="document.getElementById('password').type = this.checked ? 'text' : 'password'"> Show password</div>
  26. <input type="submit" value="Sign in"></input>
  27. <label>If you have questions please contact a stewardess</label>
  28. </div>
  29. </form>
  30. </div>
  31. </div>
  32. </div>
  33. </body>
  34. </html>