Advertisement
Guest User

main_login.php

a guest
Dec 20th, 2011
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.99 KB | None | 0 0
  1. <?php include "../include/config.php" ?>
  2.  
  3. <!doctype html>
  4. <html lang="en">
  5.  
  6.   <head>
  7.     <title>Login</title>
  8.     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  9.     <link rel="stylesheet" type="text/css" href="../style/quote_style.css" />
  10.   </head>
  11.  
  12.   <body>
  13.  
  14.   <div class="box">
  15.     <div class="login"> <form name="form1" method="post" action="checklogin.php">
  16.       <h3>Login</h3>
  17.     </div>
  18.           <div class="username">
  19.             <small>username</small>
  20.           </div>
  21.           <div class="username2">
  22.             <input name="myusername" type="text" id="myusername">
  23.           </div>
  24.  
  25.           <div class="password">
  26.             <small>password</small>
  27.           </div>
  28.           <div class="password2">
  29.             <input name="mypassword" type="password" id="mypassword">
  30.           </div>
  31.           <div class="button">
  32.             <input type="submit" name="Submit" value="Login">
  33.           </div>
  34.     </div>
  35.      
  36.   </body>
  37.  
  38. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement