• Every thing is working as advertised.

    I am using this to input login, email and password on one of the pages. Two questions.

    1. Is there a way to use _POST rather than _GET on the “out loud” redirect? I am redirecting to a different wordpress page to check mysql if login or email is already used and INSERT if ok. I do not want to pass raw password data using the _GET method.

    I have set up test pages and wordpress handles the _POST method fine.

    2. What are the chances of getting a tick box on the form set up like there is for email addresses? It would require matching of double entries for passwords.

    https://www.ads-software.com/extend/plugins/si-contact-form/

Viewing 1 replies (of 1 total)
  • Thread Starter pdhodges

    (@pdhodges)

    Another way to do this would be to add an onSubmit hook in to the submit line of the form. There could be a text field in the set up form for the test routine.

    If the field was blank there would be no onSubmit line in the example below. If there was data then it would be placed where TestDataCheck() is in the example below

    <FORM
    ACTION=”../cgi-bin/mycgi.pl”
    NAME=”testform”
    onSubmit=”return TestDataCheck()”
    >

    This would allow a way to check for duplicate logins in a database or run passwords through md5() before being sent by GET mode. It also allows you to stop the submit if your check routine returns false.

    If you use the silent mode redirect which allows the POST method you go out of scope and there is no way to get back to get back to the browser window you started from.

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: Fast Secure Contact Form] Use for passwords’ is closed to new replies.