{% extends "layout_public.html.twig" %} {% import "macro_functions.html.twig" as mf %} {% block meta_title %}{{ 'Register'|trans }}{% endblock %} {% block meta_description %}{{ 'Create an account to order services, manage billing, and track support requests online.'|trans }}{% endblock %} {% set company = guest.system_company %} {% if settings.theme == 'dark' %} {% set logo_url = company.logo_url_dark %} {% else %} {% set logo_url = company.logo_url %} {% endif %} {% block body_class %}page-signup{% endblock %} {% block body %}
{% if settings.login_page_show_logo %} {% endif %}
{{ 'Create a new account'|trans }}
{% set r = guest.client_required %}
{% if 'company' in r %}
{% endif %} {% if 'birthday' in r %}
{% endif %} {% if 'gender' in r %}
{% endif %} {% if 'address_1' in r %}
{% endif %} {% if 'address_2' in r %}
{% endif %} {% if 'city' in r %}
{% endif %} {% if 'country' in r %}
{% endif %} {% if 'state' in r %}
{% endif %} {% if 'postcode' in r %}
{% endif %} {% if 'phone' in r %}
+
{% endif %} {% set custom_fields = guest.client_custom_fields %} {% for field_name, field in custom_fields %} {% if field.active %}
{% endif %} {% endfor %} {% set honeypot = antispam_honeypot() %} {% if honeypot.enabled %} {% set honeypot_field = honeypot.field %} {% endif %}
{{ mf.recaptcha }} {% if settings.signup_tos == 'explicit' %}
{% endif %}
{% if settings.signup_tos == 'implicit' %}
{# TODO: Make this translatable once support for placeholders is implemented #} By creating an account, you agree to our {{ 'Terms of Service'|trans }} and {{ 'Privacy Policy'|trans }}.
{% endif %}
{% if settings.show_password_reset_link %} {% endif %}
{% endblock %}