Account Register Form API

The Account Register Form API gets the HTML for the account register form that can be embedded into a page.

You must specify the id of the Account Form to use. The first step would be to create a new Account Form where the form type is "Register". After it's created you will see the form id in the right-most column when viewing the list of Account Forms.

Form templates are managed under the "Templates" tab when you are viewing the form details.  Use the "Template key" value for the template parameter.

Learn more about APIs.

Minimum Tag

{{ _api.account.registerForm.formId(3).template('template-name') }}

Example Tag

Get the register form

{{ _api.account.registerForm.formId(3).template('template-name') }}

API Tag Parameters

ParameterDescription
formId Required

The id of the Account Form to use

Type: Integer

Example:
formId(3)
template
t
Required if responseFormat is not 'data'. The template key of the template to use.

If this is not passed when it's required then nothing will be returned. In some cases, by not passing this parameter you will get just the raw data back.

You an alternately use the short form "t" instead of "template"

Type: String

Examples:
template('template-key')


t('template-key')