Guest User

Untitled

a guest
Aug 11th, 2017
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <body style="background-color:#6666ff;">
  4. <style>
  5. main {
  6. display: block;
  7. background-color: #002db3;
  8. padding: 50px;
  9. font-size: 20px;
  10. }
  11. a:link
  12. {
  13.  
  14. }
  15. </style>
  16.  
  17. <main>
  18. <form action="/action_page.php" method="post">
  19.  
  20. <h1><span style="color:white">Sign In</span></h1>
  21. Username:<br>
  22. <input type="text" name="username">
  23. <br>
  24. Password:<br>
  25. <input type="text" name="password">
  26. <br>
  27. <p>The characters in a password field are masked (shown as asterisks or circles).</p>
  28.  
  29. <input type="submit" value="Login">
  30. <br>
  31. <br>
  32. <br>
  33. <input type="radio" name="XYZ" value="Remember Me" checked> Remember Me
  34. <a span style="color:white" href="https://www.w3schools.com/html/">Forgot Password ?</a>
  35. <br>
  36. </form>
  37.  
  38. <p>If you click the "Submit" button, the form-data will be sent to a page called "/action_page.php".</p>
  39. <button type="button" onclick="alert('Hello World!')">Login with Facebook</button>
  40. <button type="button" onclick="alert('Hello World!')">Login with Twitter</button><br><br>
  41. <a span style="color:white" href="https://www.w3schools.com/html/">Need a account ?</a>
  42. <button type="button" onclick="alert('Hello World!')">Sign Up</button>
  43. </main>
  44.  
  45. </body>
  46. </html>
Add Comment
Please, Sign In to add comment