Advertisement
Guest User

Untitled

a guest
Jun 21st, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.69 KB | None | 0 0
  1. <?php
  2. session_unset();
  3. ?>
  4. <html>
  5.     <head>
  6.         <title>Log in</title>
  7.     </head>
  8.     <body>
  9.         <form action="authenticate.php" method="get">
  10.             <p>Enter your username:
  11.                 <input type="text" name="user" />
  12.             </p>
  13.             <p>Enter your password:
  14.                 <input type="password" name="pass" />
  15.             </p>
  16.  
  17.             <br />
  18.  
  19.             <p>Enter your favorite movie:
  20.                 <input type="text" name="favmovie" />
  21.             </p>
  22.             <p>Enter the rating for that movie:
  23.                 <input type="text" name="movierating" />
  24.             </p>
  25.             <input type="submit" value="Submit" />
  26.         </form>
  27.     </body>
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement