Guest User

Untitled

a guest
Jun 1st, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.71 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <html>
  4. <head>
  5. <title>Login</title>
  6. <link href="login.css" rel="stylesheet" type="text/css">
  7. </head>
  8. <body>
  9.  
  10. <form>
  11. <div class="Form">
  12.  
  13. <h1>Login</h1>
  14. <hr>
  15. <p>Username:</p>
  16. <input type="Email" placeholder="Email/Profile ID">
  17.  
  18. <p>Password:</p>
  19. <input type="Password" placeholder="Password"><br>
  20.  
  21. </div>
  22. <div class="Button">
  23. <button value="1" id="loginbutton" name="login" type="submit">Login</button>
  24. <input type="checkbox"><label for="Remember Me">Remember me next time</label>
  25. </div>
  26.  
  27.  
  28. </form>
  29.  
  30.  
  31. </body>
  32. </html>
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42. --------------------------------------
  43. CSS
  44. -----------------------------------------
  45.  
  46. .Form{
  47.  
  48. padding: 20px;
  49. margin: 0px auto;
  50.  
  51. width: 300px;
  52. height: 300px;
  53. color: black;
  54.  
  55. padding: 0px auto;
  56. background-color:skyblue ;
  57. }
  58.  
  59. p{
  60.  
  61. color: white;
  62. padding: 0px;
  63. margin: 10px 0px 10px 0px;
  64. }
  65.  
  66. h1{
  67. color: white;
  68.  
  69. padding: 20px;
  70. margin: 0px;
  71. }
  72.  
  73. input[type="Email"]
  74. {
  75. padding: 10px;
  76. width: 270px;
  77. }
  78.  
  79. input[type="Password"]
  80. {
  81. padding: 10px;
  82. width: 270px;
  83.  
  84. }
  85.  
  86. button{
  87.  
  88. float: right;
  89. margin: 20px;
  90. height: 30px;
  91. width: 50px;
  92. background-color: skyblue;
  93. }
  94.  
  95. .Button{
  96. background-color: #cccccc;
  97. height: 79px;
  98. width: 340px;
  99. padding: 0px auto;
  100. margin: 0px auto;
  101.  
  102. }
  103.  
  104. input[type="checkbox"]
  105. {
  106. margin-top: 30px;
  107. background-color: pink;
  108. }
Add Comment
Please, Sign In to add comment