All Collections
Membership
Enable Users to Subscribe to a Free Trial
Enable Users to Subscribe to a Free Trial

Use your landing page to encourage membership sign up

Updated over a week ago

With PeopleVine services you have the ability to setup a Free Trial for a set period of time, allowing customers to sign up with their name, email and a password.

With the following code, you can then bypass the sign up page and add a form directly to your landing page instead by following these steps:

  1. Determine the billing service you want to setup the free trial for and identify the service_no value (located in the URL)

  2. On your landing page, you can setup a form that will capture their name, email and password and then submit it to the service sign up page (typically /sign_up/#).When using a form it will auto POST this data to the URL automatically, but alternatively you can send in the following parameters:flag=signuptrial=trueemail=<user's email>pw=<user's password>name=<user's name>The URL should look like: http://<domain_name>/sign_up/<service_no>?flag=signup&trial=true&email=<user's email>&pw=<user's password>&name=<user's name>

Or drop in the sample form below to leverage this feature.

<form action="/sign_up/<service_no>" method="post" role="form" class="landing-wide-form clearfix">
    <div class="col_four_fifth nobottommargin">
        <div class="col_one_third nobottommargin">
            <input type="text" class="form-control input-lg not-dark" value="" placeholder="Your Name*" name="name">
        </div>
        <div class="col_one_third nobottommargin">
            <input type="email" class="form-control input-lg not-dark" value="" placeholder="Your Email*" name="email">
        </div>
        <div class="col_one_third col_last nobottommargin">
            <input type="password" class="form-control input-lg not-dark" value="" placeholder="Choose Password*" name="pw">
        </div>
    </div>
    <div class="col_one_fifth col_last nobottommargin">
<input type="hidden" name="trial" value="true">
<input type="hidden" name="flag" value="signup">
        <button type="submit" class="btn btn-lg btn-danger btn-block nomargin">START FREE TRIAL</button>
    </div>
</form>

Did this answer your question?