Description
{%- liquid
assign information_blocks = section.blocks | where: 'type', 'usp'
assign newsletter_checkbox_block = section.blocks | where: 'type', 'newsletter_checkbox'
assign custom_checkbox_blocks = section.blocks | where: 'type', 'custom_checkbox'
-%}
{{ 'customer.register.title' | t }}
{%- assign register_form_class = 'f8lg text-start' -%}
{%- form 'create_customer', class: register_form_class -%}
{%- if form.errors -%}
{%- for error in form.errors -%}
{%- endfor -%}
{%- endif -%}
{%- endform -%}
{% schema %}
{
"name": "t:main.account_register.name",
"class": "w630 align-center",
"blocks": [
{
"type": "usp",
"name": "t:main.account_register.blocks.usp.name",
"settings": [
{
"id": "usp",
"type": "richtext",
"label": "t:main.account_register.blocks.usp.settings.usp.label",
"default": "
Give your customers more details.
"
}
]
},
{
"type": "newsletter_checkbox",
"name": "t:main.account_register.blocks.newsletter_checkbox.name",
"limit": 1,
"settings": [
{
"type": "paragraph",
"content": "t:main.account_register.blocks.newsletter_checkbox.settings.paragraph"
}
]
},
{
"type": "custom_checkbox",
"name": "t:main.account_register.blocks.custom_checkbox.name",
"settings": [
{
"id": "custom_checkbox_text",
"type": "richtext",
"label": "t:main.account_register.blocks.custom_checkbox.settings.custom_checkbox_text.label",
"info": "t:main.account_register.blocks.custom_checkbox.settings.custom_checkbox_text.info"
},
{
"id": "required",
"type": "checkbox",
"label": "t:main.account_register.blocks.custom_checkbox.settings.required.label"
}
]
}
]
}
{% endschema %}