{% extends 'frontend.html.twig' %} {% form_theme form 'nordmindAdminBundle:Form:form_theme.html.twig' %} {% block content %}

{% trans %}NEWSLETTER{% endtrans %}

{% trans %}Sign up and receive the latest images from our Artists!{% endtrans %}

{% trans %}Get creative inspirations regularly.{% endtrans %}

{% if signUp %}
{% trans %}An email has been sent to{% endtrans %} {{ email }}. {% trans %}It contains a confirmation link you must click to confirm your subscription.{% endtrans %}
{% else %}
{{ form_start(form) }}
{{ form_label(form.name) }}
{{ form_errors(form.name) }} {{ form_widget(form.name, {'attr': {'placeholder': 'Your name'} }) }}
{{ form_label(form.email) }}
{{ form_errors(form.email) }} {{ form_widget(form.email, {'attr': {'placeholder': 'example@example.com'} }) }}
{{ form_end(form) }}
{% endif %}
{% endblock content %} {% block javascript %} {{ parent() }} {% endblock javascript %}