templates/eshopLogin.html.twig line 1

Open in your IDE?
  1. {% if wireFrame.wireFrameFile is defined and wireFrame.wireFrameFile != null %}
  2.     {% set wireFrameFile = wireFrame.wireFrameFile  %}
  3. {% else %}
  4.     {% set wireFrameFile = 'eshopLayoutBasic.html.twig' %}
  5. {% endif %}
  6. {% extends wireFrameFile %}
  7. {% block title %}{{ 'eshop.login'|trans|raw }}{% endblock %}
  8. {% block page_contents %}
  9. <h1>{{ 'eshop.login'|trans }}</h1>
  10.     {{ form(form) }}
  11. <br>
  12. <a href="{{ path('root') }}eshop/{{ eshop.eshopId }}/register" class="butt_big">{{ 'user.new_account'|trans }}</a>
  13. <a href="{{ path('root') }}eshop/{{ eshop.eshopId }}/forgottenpassword" class="butt_big">{{ 'user.forgotten_password'|trans }}</a>
  14. <br><br>
  15. {% endblock %}