templates/popin/_user_login.html.twig line 15

Open in your IDE?
  1. <div id="{% block userLoginId %}user-login{% endblock userLoginId %}" class="clearfix">
  2.     <div class="grid-60 tab-p-60 m-100">
  3.         <ul class="navbar-nav">
  4.             <li class="nav-item active">
  5.                 <span><img src="{{ asset('bundles/vpauto/frontend/images/particuliers.svg') }}" alt="" /> {{ "frontend.header.link.private"|trans }}</span>
  6.                 <span><img src="{{ asset('bundles/vpauto/frontend/images/societes.svg') }}" alt="" /> {{ "frontend.header.link.society"|trans }}</span>
  7.             </li>
  8.             <li class="nav-item">
  9.                 <a href="{{ getADUrl() }}" title="{{ "frontend.header.link.pro"|trans }}">
  10.                     <img src="{{ asset('bundles/vpauto/frontend/images/pros_2_auto.svg') }}" alt="" /> {{ "frontend.header.link.pro"|trans }}
  11.                 </a>
  12.             </li>
  13.         </ul>
  14.         <h3>{{ 'frontend.profile.account.already'|trans|raw }}</h3>
  15.         {{ render(controller("FOS\\UserBundle\\Controller\\SecurityController:loginAction")) }}
  16.         <p class="txtcenter"><a href="#" class="u-modal u-forgot lien01">{{ 'frontend.profile.password.forget'|trans }}</a></p>
  17.         <p class="txtcenter grid-hide tab-l-hide tab-p-hide m-visible">
  18.             <a href="#" title="" class="lien02 bt-cancel-login">{{ 'frontend.action.cancel'|trans }}</a>
  19.         </p>
  20.     </div>
  21.     <div class="grid-40 tab-p-40 m-100">
  22.         <div class="empty-box"></div>
  23.         <div class="background-grey">
  24.             {% block right_panel %}
  25.                 <h3>{{ 'frontend.profile.create_account.title01'|trans }}</h3>
  26.                 <div class="content-right-user">
  27.                     <p>{{ 'frontend.profile.create_account.title02'|trans }}</p>
  28.                     <ul>
  29.                         <li>{{ 'frontend.profile.create_account.item01'|trans }}</li>
  30.                         <li>{{ 'frontend.profile.create_account.item02'|trans }}</li>
  31.                         <li>{{ 'frontend.profile.create_account.item03'|trans }}</li>
  32.                     </ul>
  33.                     <p>
  34.                         {% if vehicle.id is defined %}
  35.                             {% set url = path('registration_step', { (constant('App\\EventListener\\RegistrationListener::VEHICLE_ID')) : vehicle.id }) %}
  36.                         {% else %}
  37.                             {% set url = path('registration_step', {step: 2}) %}
  38.                         {% endif %}
  39.                         <a href="{{ url }}" title="{{ 'frontend.header.profile.create'|trans }}" class="link_profile_create btn06">
  40.                             {{ 'frontend.header.profile.create'|trans }}
  41.                         </a>
  42.                     </p>
  43.                 </div>
  44.             {% endblock right_panel %}
  45.         </div>
  46.     </div>
  47. </div>