Guest User

Untitled

a guest
May 25th, 2018
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. <form method="post"
  2. action="<?php echo ap_url_to("login"); ?>"
  3. id="login">
  4. <input type="hidden"
  5. name="ap_chal"
  6. id="ap_chal"
  7. value="<?php echo ap_get_tmpl_var("login_challenge"); ?>" />
  8. <input type="hidden"
  9. name="ap_resp"
  10. id="ap_resp"
  11. value="" />
  12. <label for="ap_user">Username: </label><br />
  13. <input type="text"
  14. id="ap_user"
  15. name="ap_user"
  16. value="<?php echo $_POST["ap_user"]; ?>" /><br />
  17. <label for="ap_pass">Password: </label><br />
  18. <input type="password"
  19. id="ap_pass"
  20. name="ap_pass"
  21. value="" /><br />
  22. <input type="submit"
  23. id="login"
  24. value="Log in"
  25. onclick="return sendForm();" />
  26. </form>
Add Comment
Please, Sign In to add comment