Advertisement
Guest User

Login form not-completed

a guest
Apr 13th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset = "UTF-8">
  5. <title><?php echo "TestPage"; ?></title>
  6. <link rel="stylesheet" href="style.css" type="text/css" />
  7. </head>
  8. <body>
  9. <div class="maindiv">
  10. <h1>Welcome Home</h1>
  11. <div class="divlogin">
  12. <h3>Please insert your data to login:</h3>
  13. Username: <input type="text"> <br>
  14. Password: <input type="password"> <br>
  15. <button type="submit" name="submit" action="submit">Login</button>
  16. </div>
  17. <div class="divregister">
  18. <h3>Please insert your data to register:</h3>
  19. Username:<input type="text"> <br>
  20. Password:<input type="password"> <br>
  21. E-mail: <input type"Email"> <br>
  22. <button type="login" name="submit" action="submit">Register</button>
  23. </div>
  24. </div>
  25. </body>
  26. </html>
  27.  
  28. //////////////////////////////////CSS//////////////////////////////////////////
  29. body
  30. {
  31. margin:0px 0;
  32. padding:0px 0;
  33. }
  34. .maindiv
  35. {
  36. margin-left:18%;
  37. margin-top:50px;
  38. background:#DDD;
  39. border:1px solid;
  40. width:800px;
  41. height:330px;
  42. padding:10px;
  43. }
  44. .maindiv h1
  45. {
  46. text-align:center;
  47. text-decoration:underline;
  48. }
  49. .divlogin{
  50. border:1px solid;
  51. width:300px;
  52. height:200px;
  53. padding:10px;
  54. }
  55. button
  56. {
  57. margin-left:30%;
  58. }
  59. .divregister
  60. {
  61. border:1px solid;
  62. width:499px;
  63. margin-left:300px;
  64. margin-top:-202px;
  65. height:248px;
  66. padding:10px;
  67. }
  68. .divregister h3
  69. {
  70. text-align:center;
  71. }
  72. input{
  73. margin:10px;
  74. margin-left:10px
  75. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement