Advertisement
Guest User

Untitled

a guest
Jul 26th, 2016
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.59 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>PHPRO Login</title>
  4. </head>
  5.  
  6. <body>
  7. <h2>Add user</h2>
  8. <form action="adduser_submit.php" method="post">
  9. <fieldset>
  10. <p>
  11. <label for="phpro_username">Username</label>
  12. <input type="text" id="phpro_username" name="phpro_username" value="" maxlength="20" />
  13. </p>
  14. <p>
  15. <label for="phpro_password">Password</label>
  16. <input type="text" id="phpro_password" name="phpro_password" value="" maxlength="20" />
  17. </p>
  18. <p>
  19. <input type="hidden" name="form_token" value="<?php echo $form_token; ?>" />
  20. <input type="submit" value="&rarr; Login" />
  21. </p>
  22. </fieldset>
  23. </form>
  24. </body>
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement