Advertisement
Guest User

Untitled

a guest
Oct 18th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1.  
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  3. <html>
  4. <head>
  5. <title>LOGIN</title>
  6. <script type="text/javascript">
  7.  
  8. </script>
  9. <style>
  10. body{
  11. margin:0;
  12. font-family: Segoe UI;
  13. }
  14. .container{
  15. margin:0;
  16. background-color:green;
  17. min-height: 500px
  18. }
  19. .login-form {
  20. font-size: 20px;
  21. font-family: Segoe UI;
  22. text-align: left;
  23. /* border-radius: 30px; */
  24. left: 25%;
  25. padding: 20px;
  26. background-color: rgba(255, 255, 255, 0.6);
  27. color: black;
  28. }
  29.  
  30. .wrapper-login-form {
  31. margin-left: 65%;
  32. box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0
  33. rgba(0, 0, 0, 0.19);
  34. text-align: center;
  35. margin-right: 10%;
  36. margin-top: 10%
  37. }
  38.  
  39. .btn {
  40. padding: 10px
  41. }
  42.  
  43. </style>
  44. </head>
  45. <body>
  46. <div class="container">
  47. <h2 align="center" style="color:orange">Login Page</h2>
  48. <div class="wrapper-login-form">
  49.  
  50. <div class="login-form">
  51.  
  52. <span style="font-size: 2em;">Login</span> <br> <label
  53. for="useraname"> Username </label> <br> <input id="useraname"
  54. class="form-control" type="text" /> <br /> <label for="password">
  55. Password </label> <br>
  56. <input id="password" type="password" class="form-control" /> <br />
  57. <button class="btn btn-default" onclick="login(); return false;">Login</button>
  58.  
  59.  
  60. </div>
  61. </div>
  62. </div>
  63. </body>
  64. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement