templates/web/customer/authorization/authorization.twig line 1

Open in your IDE?
  1. {##
  2.  # Login
  3.  #}
  4. {{ widget_list('customer.signin') }}
  5. {% form this.getFormClass() %}
  6. <table class="login-form{% if this.isLocked() %} locked-out{% endif %}" {% if this.isLocked() %}data-time-left="{{ this.getTimeLeftToUnlock() }}"{% endif %}>
  7.   {{ widget_list('customer.signin.fields') }}
  8.   <tbody class="timer-table-body">
  9.   <tr class="timer-header">
  10.     <td>{{ t('Login is locked out') }}</td>
  11.   </tr>
  12.   <tr class="timer-body">
  13.     <td>
  14.       {{ t('Time left') }}: <span id="timer">{{ this.getTimeLeftFormatted() }}</span>
  15.     </td>
  16.   </tr>
  17.   </tbody>
  18. </table>
  19. {% endform %}
  20. {{ widget_list('customer.signin.after') }}