Advertisement
Guest User

index.php

a guest
Feb 28th, 2013
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.71 KB | None | 0 0
  1. <?php
  2. session_start();
  3. include('login.php');
  4.  
  5. ?>
  6. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  7.        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  8. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  9.  
  10. <head>
  11.         <title>untitled</title>
  12.         <meta http-equiv="content-type" content="text/html;charset=utf-8" />
  13.         <meta name="generator" content="Geany 0.21" />
  14. </head>
  15.  
  16. <body>
  17.         <form  action="login.php" method="POST">
  18.         Username: <input type="text" name="username" id="username"> <br/>
  19.         Password: <input type="text" name="password" id="password"> <br/>
  20.          <input type="submit" value="Submit">
  21.         </form>
  22. </body>
  23.  
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement