{% extends '@kohinos/installation/layout.html.twig' %} {% block step_title %}Configuration des emails{% endblock %} {% block step_content %}

Configurez les adresses email utilisées pour les notifications et les demandes de contact.

{{ form_start(form, {'attr': {'class': 'installation-form'}}) }}
{{ form_label(form.mlc_notif_email) }} {{ form_widget(form.mlc_notif_email) }} {{ form_errors(form.mlc_notif_email) }} {% if form.mlc_notif_email.vars.help is defined %} {{ form.mlc_notif_email.vars.help|raw }} {% endif %}
{{ form_label(form.mlc_contact_email) }} {{ form_widget(form.mlc_contact_email) }} {{ form_errors(form.mlc_contact_email) }} {% if form.mlc_contact_email.vars.help is defined %} {{ form.mlc_contact_email.vars.help|raw }} {% endif %}
Retour
{{ form_end(form) }} {% endblock %}