Custom registration forms

Overview

  • Custom registration forms are simple html/css forms.
  • All you have to do is to provide valid HTML code with respective CSS file
  • Full valid registration form is available here: Full working example of the page using registration API call
  • If you prefer not to get your hands dirty with API code, we will provide you with paid support (pricing below)

Fix your errors first

  1. Validate your HTML first, using i.e. this validator or any other available W3C validator
  2. HTML must be formatted
  3. Failing to do so will significantly INCREASE the service price, as engineers will have to rewrite your HTML

Fix the most frequent errors

  • Dont embed <style>…</style>. CSS must be in separate file, loaded in <head> section
  • Entire dropdown with language selector replace with one line:
    <li id="langSelector" class="dropdown language-selector"></li>
  • Privacy policy should be linked to the correct domain - quite often domain1.com links to provacy of domain6.com
  • NO DUPLICATED ID for the forms, notable: CountryOfCitizenshipCode
  • Id's of the forms move to singletons. Replace for example:
    • UserProfile.RegistrationDetails.AcceptTermsAndConditions with AcceptTermsAndConditions
    • UserProfile_PersonalDetails_AnnualIncomeId with AnnualIncomeId
    • UserProfile.PersonalDetails.TitleId –> TitleId
    • UserProfile_Lead_Id –> LeadId
    • UserProfile.Lead.Id –> LeadId
    • etc
  • Dont use manual requests tokens! Remove <input name="__RequestVerificationToken" type="hidden" value="…" />
  • Static files: load from https, not from http: i.e.
    http://static.<yourdomain>.com/forex/220x60_....png
  • Same for *.css file:
     background-image: url(https://static.<domain>.com/forex/footer-bg.jpg) !important; 

Pricing

ServiceEUR/form
You do the integrationFree
You provide HTML according to guidelines above €50/form
You provide invalid/erroneous HTML and expect us to fix it€130/form
faq/support/crm/api/registration/form_errors.txt · Last modified: 2019/04/10 08:50 by 127.0.0.1
Back to top
CC Attribution-Share Alike 4.0 International
Driven by DokuWiki Recent changes RSS feed Valid CSS Valid XHTML 1.0