{% if wireFrame.wireFrameFile is defined and wireFrame.wireFrameFile != null %}
{% set wireFrameFile = wireFrame.wireFrameFile %}
{% else %}
{% set wireFrameFile = 'eshopLayoutBasic.html.twig' %}
{% endif %}
{% extends wireFrameFile %}
{% block title %}{{ 'eshop.login'|trans|raw }}{% endblock %}
{% block page_contents %}
<h1>{{ 'eshop.login'|trans }}</h1>
{{ form(form) }}
<br>
<a href="{{ path('root') }}eshop/{{ eshop.eshopId }}/register" class="butt_big">{{ 'user.new_account'|trans }}</a>
<a href="{{ path('root') }}eshop/{{ eshop.eshopId }}/forgottenpassword" class="butt_big">{{ 'user.forgotten_password'|trans }}</a>
<br><br>
{% endblock %}