Advertisement
moali

log in page

Dec 19th, 2014
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.51 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <html>
  4. <head>
  5.  
  6.     <title>Sign-in</title>
  7. </head>
  8.  
  9. <body style="background-color: lightblue;">
  10.      <h1> Welcome!</h1>
  11.    
  12.     <form action = "checkAlien.php" method = "POST">
  13.         username: <input type ="text" name = "alienname"><br/>
  14.         password: <input type="password" name ="password"><br/>
  15.         <br>
  16.         <input type = "submit" value = "log in">
  17.     </form>
  18.    
  19.    
  20.     <div>
  21.         sign up? <a href = "register.html"> Register   </a>  
  22.     </div>
  23. </body>
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement