From 57282ec47b137d32cdc090ebd5ef0c49b6b8114d Mon Sep 17 00:00:00 2001 From: Lyanis Souidi Date: Tue, 17 Jan 2023 23:05:24 +0100 Subject: [PATCH] Modification de la page de contact MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Ajout du traitement de la requête POST - Ajout d'icône pour l'adresse mail et l'adresse postale --- assets/css/contact.css | 6 +++++- contact/index.php | 33 ++++++++++++++++++++------------- 2 files changed, 25 insertions(+), 14 deletions(-) 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 .= "...";