diff --git a/app/entreprises/forms.py b/app/entreprises/forms.py
index 33b5c22d..a1619007 100644
--- a/app/entreprises/forms.py
+++ b/app/entreprises/forms.py
@@ -339,7 +339,7 @@ class CorrespondantsCreationForm(FlaskForm):
correspondant_list = []
for entry in self.correspondants.entries:
- if entry.nom.data.strip() and entry.prenom.data.strip():
+ if entry.nom.data and entry.prenom.data:
if (
entry.nom.data.strip(),
entry.prenom.data.strip(),
diff --git a/app/static/css/entreprises.css b/app/static/css/entreprises.css
index 43628866..0ede866c 100644
--- a/app/static/css/entreprises.css
+++ b/app/static/css/entreprises.css
@@ -40,6 +40,11 @@
*background-color: #151515;
}
+.btn-remove {
+ margin-top: 5px;
+ margin-bottom: 5px;
+}
+
.fiche-entreprise .btn {
margin-top: 5px;
margin-bottom: 5px;
diff --git a/app/templates/entreprises/ajout_correspondants.html b/app/templates/entreprises/ajout_correspondants.html
index be8e5cc8..18070b7f 100644
--- a/app/templates/entreprises/ajout_correspondants.html
+++ b/app/templates/entreprises/ajout_correspondants.html
@@ -35,6 +35,14 @@
{% endblock %}
\ No newline at end of file
diff --git a/app/templates/entreprises/envoi_offre_form.html b/app/templates/entreprises/envoi_offre_form.html
index ca5ba131..6ead6477 100644
--- a/app/templates/entreprises/envoi_offre_form.html
+++ b/app/templates/entreprises/envoi_offre_form.html
@@ -36,6 +36,14 @@
{% endblock %}
\ No newline at end of file
diff --git a/app/templates/entreprises/form.html b/app/templates/entreprises/form.html
index fe51a97b..067f4a50 100644
--- a/app/templates/entreprises/form.html
+++ b/app/templates/entreprises/form.html
@@ -23,15 +23,15 @@