<!-- _content.membership.html.twig -->
{% set route_name = app.request.attributes.get('_route') %}
{% set route_parameters = app.request.attributes.get('_route_params') %}
<section class="mt-0 pt-3 pb-5" id="editSection" style="background-image: url({{ bgImage }});">
<div class="container">
<div class="row mt-5 mb-5">
<div class="col-md-1"></div>
<div class="col-md-10 bg-light">
<div class="row justify-content-center ">
<div class="col-md-11 heading-section text-center bg-light">
<div class="float-right">
{% if lang == 'DE' %}
<a href="{{ path(route_name, route_parameters + {'lang':'en'}) }}"><img src="/bundles/startplatzstyle/images/english_language.png" height="20px;" alt=“English”></a>
{% else %}
<a href="{{ path(route_name, route_parameters + {'lang':'de'}) }}"><img src="/bundles/startplatzstyle/images/german_language.png" height="20px;" alt=“Deutsch”></a>
{% endif %}
</div>
<h1 class="mb-4 mt-5">STARTPLATZ
<br>{{ phrases.phrase_product_name }}
</h1>
<p>{{ phrases.phrase_welcome}} {{ app.user.name is defined ? app.user.name }}
<br>{{ phrases.phrase_register_instruction|raw }} <strong>{{ phrases.phrase_product_name }}</strong></p>
{% include '@StartPlatzRheinlandPitchBundle/Apply/_edit.membership.widget.html.twig' %}
</div>
</div>
</div>
</div>
</div>
</section>