src/ApplicationBundle/Modules/HoneybeeWeb/Resources/views/website/company_actions.html.twig line 1

Open in your IDE?
  1. {# Real destinations for the legacy chooser's decorative account controls. #}
  2. <template id="hbp-company-actions">
  3.     <a class="link" href="#company-onboarding" data-company-onboarding><i class="fa fa-user-plus" aria-hidden="true"></i><span>Join a company</span></a>
  4.     {% if app.session.get('userType') == 8 %}
  5.     <a class="link" href="{{ path('honeybee_account_merge') }}"><i class="fa fa-link" aria-hidden="true"></i><span>Merge accounts</span></a>
  6.     {% else %}
  7.     <a class="link" href="{{ path('honeybee_website_page', {'page':'app-support'}) }}#account-linking"><i class="fa fa-link" aria-hidden="true"></i><span>Account linking help</span></a>
  8.     {% endif %}
  9.     <a class="link" href="{{ path('honeybee_website_page', {'page':'app-support'}) }}#account-deletion"><i class="fa fa-trash" aria-hidden="true"></i><span>Request deletion</span></a>
  10. </template>