Guest User

Untitled

a guest
Apr 5th, 2017
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <title>Login Screen</title>
  5. </head>
  6. <body>
  7. <h1> Log in or register</h1>
  8. <h2> Log in to continue</h2>
  9.  
  10. <form name ="registration" method="post" action="auth.php">
  11.  
  12. Username: <br>
  13. <input type="text" name="username"><br>
  14. Password: <br>
  15. <input type="password" name="password"><br>
  16. <div>
  17. <input type="submit" name="login" value="Log In">
  18. <input type="submit" name="register" value="Register">
  19. </div>
  20.  
  21. </form>
  22.  
  23. <br><br><br>
  24. <h2> Enter username to check data associated with it</h2>
  25. <form name ="get user data" method="post" action="getdata.php">
  26.  
  27. Username: <br>
  28. <input type="text" name="usernameget"><br>
  29. <input type="submit" name="submitget" value="Submit">
  30.  
  31.  
  32. </form>
  33.  
  34. </body>
  35.  
  36.  
  37. </html>
  38.  
  39. <?php
  40.  
  41. include "connect.php";
  42.  
  43. ?>
Add Comment
Please, Sign In to add comment