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

NEWSLETTER

Sign up and receive the latest images from our Artists!

Get creative inspirations regularly.

{% if signUp %}
An email has been sent to {{ email }}. It contains a confirmation link you must click to confirm your subscription.
{% 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 %}