diff --git a/assets/css/contact.css b/assets/css/contact.css index ac9f0f9..f2d8650 100644 --- a/assets/css/contact.css +++ b/assets/css/contact.css @@ -39,10 +39,14 @@ input[type=text], input[type=email], select, textarea { content: "☎️ "; } -#contact a[href^="mailto:"]::before { +#contact-info a[href^="mailto:"]::before { content: "✉️ "; } +#contact-info a[href*="google.com/maps"]::before { + content: "📌 "; +} + .contact { display: grid; gap: 25px; diff --git a/contact/index.php b/contact/index.php index a042acf..10d7e4b 100644 --- a/contact/index.php +++ b/contact/index.php @@ -30,8 +30,12 @@ function contact_form($profile, $subject) : string {

Route forestière Hurtault, 77300 Fontainebleau

+33 1 60 74 68 00

elitesolar.contact77@gmail.com

- -
+ '; + + if ($_SERVER['REQUEST_METHOD'] == 'POST') { + $text .= "

Votre demande a bien été prise en compte, nous y répondrons dans les meilleurs délais.

"; + } else { + $text .= '

Formulaire de contact


@@ -43,41 +47,44 @@ function contact_form($profile, $subject) : string {
'; - if ($profile == 'business') { - $text .= ' + if ($profile == 'business') { + $text .= '


'; - } else echo ''; + } else echo ''; - if ($subject == 'integration') { - $text .= ''; - } else $text .= '
+ if ($subject == 'integration') { + $text .= ''; + } else $text .= '

'; - $text .= '
+ $text .= '


-
'; + '; + } + + $text .= ''; return $text; } function select_subject($profile) : string { $text = ' et votre demande concerne'; if (isset($_GET["subject"]) && $_GET["subject"] == 'warranty') { - $text .= " la garantie Solar Glass."; + $text .= " la garantie Solar Glass"; $text .= "

La garantie légale de conformité est assuré par le fabricant intégrant la technologie Solar Glass dans ses appareils, en cas de problème concernant Solar Glass sur votre appareil, merci donc de contacter directement le fabricant de votre appareil.

"; } elseif (isset($_GET["subject"]) && $_GET["subject"] == 'integration') { - $text .= " l'intégration de Solar Glass dans vos produits."; + $text .= " l'intégration de Solar Glass dans vos produits"; $text .= contact_form($profile, $_GET["subject"]); } elseif (isset($_GET["subject"]) && $_GET["subject"] == 'other') { - $text .= " autre chose."; + $text .= " autre chose"; $text .= contact_form($profile, $_GET["subject"]); } else { $text .= "...";