Difference between revisions of "Custom Combined Sign-Up Page"

From SmartWiki
Jump to: navigation, search
 
(11 intermediate revisions by 5 users not shown)
Line 1: Line 1:
To create a Custom Combined Sign-Up Page (also known as a hybrid sign-up page), follow the instructions below:
+
#REDIRECT [[Creating a System Generated Organization and Contact signup page]]
Note: A basic understanding of HTML and JavaScript is required to complete this task.
 
  
1. Create a '''Company Signup''' page within [[SmartSimple]].  Remember to set (as required):
+
{{DeprecatedPage}}
* The '''mandatory''' and '''optional''' standard fields.
 
* The company '''categories'''.
 
* Insert the '''sample sign-up''' and '''confirmation''' template - required to save the page.
 
* Click the '''Activate Page''' option button.
 
* Set the '''Name Check''' field as appropriate (update profile or create new profile).
 
* Click the '''Save''' button.
 
 
 
 
 
2. Create a '''Contact Signup''' page within [[SmartSimple]]. Remember to set (as required):
 
* The '''mandatory''' and '''optional''' standard fields.
 
* The contact [[Role|roles]].
 
* Insert the '''sample sign-up''' and '''confirmation''' template - required to save the page.
 
* Click the '''Activate Page''' option button.
 
* Set the '''Email Check''' field as appropriate (update profile or create new profile).
 
* Set the '''Enable Login''' - if required.
 
* Click the '''Save''' button.
 
 
 
 
 
3. View the HTML source of both '''signup''' pages and join them together as desired.
 
* Ensure there is only one form tag (see below), with action: '''/s_cpsignup.jsp'''
 
* Both the '''ctoken''' from the company sigup and '''ptoken''' from the contact signup pages must be present. Example:
 
    <form action='/s_cpsignup.jsp' method='POST' onsubmit='return sb(this);'>
 
   
 
    &lt;!-- this must be company signup page token --&gt;
 
    <input type=hidden name=ctoken value="XVtQHUUGYFpfRBdfXxJSRlNZYg%3D%3D">
 
    &lt;!-- this must be contact signup page token --&gt;
 
    <input type=hidden name=ptoken value="XVtQC1oGYFpfRBdfXxJSRlNZYg%3D%3D">
 
 
 
* Ensure there is only one Submit button.
 
* If your Company and Contact signup pages both have a standard phone field. Leave the company field as is and rename the input for the contact phone to “uphone”  example:
 
    <input type=text class='Large' name='uphone' id='uphone'>
 
 
 
* The JavaScript validations for the "Contact Signup" and "Company Signup" should both be executed when submit is clicked.
 
   
 
4. '''Save''' the page.
 
 
 
5. Create a web enabled [[Smart Folder]] and store the modified page in the folder.
 
 
 
6. Select the [[URL]] for this file through the '''File Options'''.
 
 
 
7. Use this [[URL]] as the link in the website.
 
 
 
==See Also==
 
* [[System Combined Sign-Up Page]]
 
 
 
 
 
[[Category:System Management]][[Category:Sign-Up Features]]
 

Latest revision as of 08:39, 21 July 2017


Ambox warning pn.png This article is deprecated and the information contained within may no longer be correct.