Super short custom registration form

Created: 12/26/2016 | Updated: 8/23/2018 | Status: Published

You have an option to create your own custom registration form and place it in your content site or landing page.

you can make your own design and html structure and send the fields you want to the back-office.


This way you can enable user to make a simple and quick registration to your site, after submitting the form he will get a password to his Email address and will be able to login and start trading

there are only 3 mandatory fields you have to include:
                   

1. shortRegistration - should be set to 1 as an hidden field
2. email 
3. country code - you can set a default one or include a script that detects the user country code an add it to the form input  

*other then that you can include all other supported fields such as user first name, last name, phone number etc... - (not mandatory)
**as always you can include the redirectUrl parameter to transfer the user to any page you want after he fill out and submit the registration form.

here is a simple example code to a registration form with only email address, marked in red are the mandatory fields.

<form action="https://trading.brand_name.com/index/sign-up&redirectionUrl=www.brand_name.com" method="post">
    <input type="email" name="
email" value="" placeholder="email">
   
    <input type="submit" class="front-form-submit" id="front-form-submit" value="Create Account" ">

    <input type="hidden" name="
country" value="fr">
   
    <input type="hidden" name="
shortRegistration" value="1">

</form>