Advertisement
Guest User

Here ya go

a guest
Apr 3rd, 2016
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. loading.php:
  2.  
  3. <?php
  4. $username = $_POST['username'];
  5. $password = $_POST['password'];
  6.  
  7. print("username: " . $username . " !!!!1!");
  8. print("password: " . $password . " !!!!1!");
  9.  
  10. ?>
  11.  
  12.  
  13.  
  14.  
  15.  
  16.  
  17.  
  18. index.php:
  19.  
  20. <html>
  21. <head>
  22. <title>Novem Vivit-Register</title>
  23. </head>
  24. <body>
  25. <p><b>Dont Share your Password with anyone!</b></p>
  26.  
  27. <form method="post" action="loading.php">
  28. <div align="center">
  29. Username *: <input type="username" name="username" id="username" />
  30.  
  31. Password *: <input type="password" name="password" id="password" />
  32.  
  33. <input type="submit" value="Continue" />
  34. </div>
  35. </form>
  36.  
  37. </body>
  38. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement