Advertisement
Guest User

Untitled

a guest
Jun 14th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.07 KB | None | 0 0
  1.  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  2. <html>
  3.  <head >
  4.  <style type="text/css">
  5.      body{
  6.         position:absolute;
  7.         left:30%;
  8.         top:0%;
  9.      }
  10.      #head{
  11.            position:relative;
  12.            font-family:"times new roman";
  13.            text-align:center;
  14.            font-size:2em;
  15.            
  16.         }
  17.      #loginform{
  18.               position:relative;
  19.               left:30em;
  20.               top:5em;
  21.               width:25em;
  22.              }
  23.      </style>
  24.  </head>
  25.     <body>
  26.         <div id="head">
  27.             <h1>GITAM UNIVERSITY</h1>
  28.          </div>
  29.          <div id="loginform">
  30.              <form action="check.php" method="POST">
  31.                 <fieldset>
  32.                       <legend>LOGIN</legend>
  33.                           USERNAME:<input type="text" name="uname" /><br />
  34.                           PASSWORD:<input type="password" name="pwd"/><br />
  35.                           <!-- <input type="radio" name="user" value="user" checked/>USER-->
  36.                          <!-- <input type="radio" name="user" value="administrator"/>ADMIN<br />-->
  37.                           <input type="submit" value="submit" style="cursor-pointer"/>
  38.                 </fieldset>
  39.              </form>
  40.          </div>
  41.     </body>  
  42. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement