Poker Affiliate Solutions Forum
  • Register
  • Help

Community Support Forum

+ Reply to Thread
Results 1 to 2 of 2
  1. #1
    Trikkur is offline Junior Member
    Join Date
    Dec 2008
    Location
    Ohio
    Posts
    8

    Default PAS Sign Up Forms not on sub-domain

    I've got a site that only promotes one poker room and they pay their players automatically. I would rather avoid linking players to the links.mysite.com rakeback page because I think the change is too jarring and hurts conversions.

    Am I able to copy/paste the sign up form and use it on my main website or will the functionality break? Here's what this form looks like after a bit of text changing, but nothing with the forms.

    I also notice that this wold be calling the wrong website, but I'm not sure what it does.
    <form id="quick_signup" action="/member_trackers" method="post" name="quick_signup">

    Code:
    <div id="pas_signup">
    <table class="pas_data_table" cellspacing="0">
    <thead>
    <tr>
    <th colspan="3">Red Star Poker Rakeback Sign Up Form</th>
    </tr>
    </thead>
    <tbody>
    <tr>
    <th>STEP 1</th>
    <td valign="top">
    <p>Visit the Red Star Poker website using <strong><a style="text-decoration:underline; color:#FF0000;" target="new" href="/go/red-star-poker">THIS LINK</a></strong> to download the software and create an account. If you do not use our link, you may miss out on rakeback.</p>
    <p>When creating your account, you must use the Red Star Poker Sign Up Code: <strong>RAKEBACK33</strong> like the image below.</p>
    </td>
    </tr>
    <tr class="alt">
    <th>STEP 2</th>
    <td valign="top">
    <p>You <strong>MUST</strong> return to RedStarPokerRakeback.com and fill out the form below in order to be tracked for your rakeback sign up.</p>
    <form id="quick_signup" action="/member_trackers" method="post" name="quick_signup">
    <p><strong>Your Email Address:</strong> <input id="email" type="text" name="email"></p>
    <p><strong>Red Star Poker Screen Name:</strong> <input id="identifier" type="text" name="identifier">
    <input id="offer_id" type="hidden" value="2343" name="offer_id">
    <input id="button" type="submit" value="Submit" name="button"></p>
    <input type="hidden" value="7E0eYZ/fQTzaf0Cc1HLf6ZbxmQ99l0wQOVllD7BxuNk=" name="authenticity_token">
    </form>
    </td>
    </tr>
    </tbody>
    </table>
    </div>

  2. #2
    RobertPAS is offline Tech Department
    Join Date
    Oct 2011
    Posts
    26

    Default

    You should be able to re-use the code in the sample you posted. The form action should be set to the absolute URL of your PAS-hosted rakeback page appended with /member_trackers:

    Code:
    <form action="http://links.mysite.com/member_trackers" ... >
    Additionally, the form authenticity token (hidden element) can be removed completely:

    Code:
    <input type="hidden" value="7E0eYZ/fQTzaf0Cc1HLf6ZbxmQ99l0wQOVllD7BxuNk=" name="authenticity_token">
    After that, you'll be set.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts