Advertisement
Guest User

Untitled

a guest
Jun 14th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.84 KB | None | 0 0
  1. <html>
  2. <head>
  3. <style type="text/css">
  4.  body{
  5.   position:absolute;
  6.   left: 30%;
  7.   top: 0%; 
  8. }
  9. #head {
  10.     position: relative;
  11.     left: 0px;
  12.     top: 10px;
  13.     font-size: 28px;
  14.     font-weight:900;
  15. }
  16.  
  17.  #loginform {
  18.    position:relative;
  19.    left:320px;
  20.    top:10px;
  21.    width:200px;
  22.    height:80px;
  23. }
  24.  
  25.  </style>
  26. </head>
  27.  <body>
  28. <div id='head'>
  29. Gitam University
  30. </div>
  31.  <div id='loginform'>
  32.     <form action="check.php" method="post">
  33.         <fieldset>
  34.            <legend>LOGIN</legend>
  35.               USERNAME:<input type="text" size="30"><br />
  36.               PASSWORD:<input type="password" size="30"><br />
  37.               <input type="radio" name="user" value="user" checked/>USER
  38.               <input type="radio" name="user" value="administrator"/>ADMIN<br />
  39.               <input type="submit" style="cursor: pointer;" value="submit"/>
  40.         </fieldset>
  41.      </form>
  42.     </div>
  43.  </body>
  44. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement