Guest User

Untitled

a guest
Jun 29th, 2018
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title> LOGIN PAGE </title>
  5. <link rel="stylesheet" type="text/css" href="style.css">
  6. <style type="text/css">
  7. body
  8. {
  9. background-color: rgb(211,211,211);
  10. }
  11. input
  12. {
  13. font-weight: bold;
  14. font-size:10px;
  15. font-family: arial;
  16. width:100%;
  17. }
  18. fieldset
  19. {
  20. margin: auto;
  21. width:200px;
  22. background-color: aqua;
  23.  
  24. }
  25. #log
  26. {
  27.  
  28. width:35%;
  29. }
  30. </style>
  31. </head>
  32.  
  33. <body>
  34.  
  35. <div id-"frn">
  36. <form action="process.php" method="POST">
  37. <fieldset>
  38. <p>
  39. <label> Username :</label>
  40. <input type="text" id="user" name="user" />
  41. <br>
  42. </p>
  43. <p>
  44. <label> Password :</label>
  45. <input type="password" id="pass" name="pass" />
  46. </p>
  47. <p>
  48. <centre><input type="submit" id="btn" value="Login" /></centre>
  49. </p>
  50. </fieldset>
  51.  
  52. </form>
  53. </head>
  54. </html>
Add Comment
Please, Sign In to add comment