{% extends 'layout.html.twig' %} {% block content %} {{ include('Includes/content-default.html.twig') }} {% if not success %} {% if unsubscribeMethod is not empty %}
{% if unsubscribeMethod == 'email' %} Sorry, we don't have your address in our database. {% else %} Sorry, your unsubscribe token is invalid, try to remove your address manually. {% endif %}
{% endif %} {# see comment on advanced/objectForm template regarding the form theme #} {% form_theme form 'Form/default.html.twig' %} {{ form_start(form, { attr: { class: 'form-horizontal', role: 'form' } }) }} {{ form_row(form.email) }}
{{ form_widget(form.submit, { attr: { class: 'btn btn-default' } }) }}
{{ form_end(form) }} {% else %}

Unsubscribed

{% endif %} {% endblock %}