Singup fields on seperate pages

Discussion in 'Templates customization' started by brandon515, Dec 19, 2006.

  1. brandon515

    brandon515 Member

    Joined:
    Dec 9, 2006
    Messages:
    47
    I wanted to see if it is possible to create a seperate page where users can enter their username and password on a seperate page, then click next, then they would be taken to a page where they would enter first name/last name, then click next where they would be taken to the signup.php page, where those previously filled out fields would be populated but hidden, and then continue the process with the remaining fields like normal.

    P.S. I love this script!

    Thanks,
    Brandon
  2. brandon515

    brandon515 Member

    Joined:
    Dec 9, 2006
    Messages:
    47
    I figured out how to pass data from form fields on other pages to the signup.php page.

    My only problem is, that when I pass the data to the signup.php page, nothing displays next to "Membership Type"

    Brandon
  3. binbin

    binbin New Member

    Joined:
    Jan 29, 2008
    Messages:
    38
    Do you have finally achieve to split your signup page into differents pages with next button ?
    thx
  4. ronniead

    ronniead Member

    Joined:
    Dec 20, 2007
    Messages:
    118
    Maybe try something like this on your first page.

    Code:
    <form name="form1" method="get" action="amember/signup.php" onSubmit="return Next();" id="form1">
    
    
      <input name="email" type="text" />
      <input name="name_f" type="text" />
      <input name="name_l" type="text" />
      <input name="password" type="text" />
      <input type="hidden" name="price_group" value="enter number here">
      <input type="hidden" name="product_id" value="enter number here">
      <input type="hidden" name="lang" value="en">
      <input type="hidden" name="hide_paysys" value="paypal_r">
    </form>

Share This Page