Hey All! I currently am using an HTML theme from themeforest and would like to configure the included sign up page's form while keeping the styling intact. http://staging.worryfreelabs.com/saas-i-html/sign-up.html Code (markup): Anybody that can shed some light on this I would be happy to give some +REP Thank you for anything
The form has already been built you just need to edit the <form> tag on line 84 to whereever you want. If you want a javascript action handler pop the function name in the action attribute. If you want to use PHP then delete the action attribute and set the action to the page you wish to process the data. You can then "grab" the data by using the following line for each form element; $name = $_POST['html_formelement_name_here']; and use the PHP variables from then on for all validation and entry into any databases etc etc