templates/application/whileresume/website/components/elements/signup.html.twig line 1

Open in your IDE?
  1. <li>
  2.     <a href="{% if app.request.locale == 'en' %}{{ path('app_login') }}{% else %}{{ path('locale_app_login',{'_locale':app.request.locale}) }}{% endif %}" class="nav-content-bttn open-font h-auto pt-2 pb-2">
  3.         <i class="font-sm feather-log-in me-3 text-grey-500"></i>
  4.         <span>{{ 'sidebar.signin'|trans({}, 'whr-public') }}</span>
  5.     </a>
  6. </li>
  7. <li>
  8.     <a href="{% if app.request.locale == 'en' %}{{ path('whileresume_homepage') }}{% else %}{{ path('locale_whileresume_homepage',{'_locale':app.request.locale}) }}{% endif %}#register" class="nav-content-bttn open-font h-auto pt-2 pb-2">
  9.         <i class="font-sm feather-user-plus me-3 text-grey-500"></i>
  10.         <span>{{ 'sidebar.signup'|trans({}, 'whr-public') }}</span>
  11.     </a>
  12. </li>