From 394002b7222c187f4fe1214fabeb594de35ca39b Mon Sep 17 00:00:00 2001 From: Matias Mennecart <matias.mennecart.etu@univ-lille.fr> Date: Sat, 23 Dec 2023 21:29:13 +0100 Subject: [PATCH] Ajouts du favicons; fix du nom des pages --- conducteur.html | 3 +- contact.html | 3 +- css/contact.css | 15 +++++++++- faq.html | 3 +- forms/conducteur-result.html | 3 +- forms/contact-result.html | 55 +++++++++++++++++++++++------------- forms/index-result.html | 1 + forms/login-result.html | 3 +- forms/reserver-result.html | 1 + forms/reserver-result2.html | 1 + index.html | 3 +- info.html | 3 +- login.html | 3 +- reserver.html | 1 + 14 files changed, 70 insertions(+), 28 deletions(-) diff --git a/conducteur.html b/conducteur.html index b3496fa..c8d686d 100644 --- a/conducteur.html +++ b/conducteur.html @@ -2,9 +2,10 @@ <html> <head> <meta charset='utf-8'> - <title>Klaxit - Reserver</title> + <title>Klaxit - Conducteur</title> <link rel='stylesheet' href="./css/conducteur.css"> <link rel='stylesheet' href="./css/footer.css"> + <link rel="icon" type="image/png" href="./css/images/favicon.png"/> </head> <body> diff --git a/contact.html b/contact.html index e6346aa..2c62d9a 100644 --- a/contact.html +++ b/contact.html @@ -2,9 +2,10 @@ <html lang="fr"> <head> <meta charset="UTF-8"> -<title>Contact</title> +<title>Klaxit - Contact</title> <link rel="stylesheet" href="./css/contact.css" /> <link rel="stylesheet" href="./css/footer.css" /> +<link rel="icon" type="image/png" href="./css/images/favicon.png"/> </head> <body> diff --git a/css/contact.css b/css/contact.css index d00ebd3..877d8c1 100644 --- a/css/contact.css +++ b/css/contact.css @@ -227,7 +227,20 @@ div.connection-success>a { color: black; } - +div.connection-success { + margin-top: 5%; + background-color: #B0F2B6; + font-family: "Inter"; + color: black; + padding: 1%; + width: 60%; + margin-left: 20%; +} +div.connection-success>a { + text-decoration: underline; + background-color: #B0F2B6; + color: black; +} footer { position: sticky; bottom: 0px; diff --git a/faq.html b/faq.html index 88b02b4..0772c6c 100644 --- a/faq.html +++ b/faq.html @@ -2,9 +2,10 @@ <html lang="fr"> <head> <meta charset="UTF-8"> -<title>FAQ</title> +<title>Klaxit - FAQ</title> <link rel="stylesheet" href="./css/faq.css" /> <link rel="stylesheet" href="./css/footer.css" /> +<link rel="icon" type="image/png" href="./css/images/favicon.png"/> </head> <body> diff --git a/forms/conducteur-result.html b/forms/conducteur-result.html index 2160b78..101cb07 100644 --- a/forms/conducteur-result.html +++ b/forms/conducteur-result.html @@ -2,9 +2,10 @@ <html> <head> <meta charset='utf-8'> - <title>Klaxit - Reserver</title> + <title>Klaxit - Conducteur</title> <link rel='stylesheet' href="../css/conducteur.css"> <link rel='stylesheet' href="../css/footer.css"> + <link rel="icon" type="image/png" href="../css/images/favicon.png"/> </head> <body> diff --git a/forms/contact-result.html b/forms/contact-result.html index f3117ff..7b7f2e3 100644 --- a/forms/contact-result.html +++ b/forms/contact-result.html @@ -3,15 +3,16 @@ <head> <meta charset="UTF-8"> <title>Contact</title> -<link rel="stylesheet" href="./css/contact.css" /> -<link rel="stylesheet" href="./css/footer.css" /> +<link rel="stylesheet" href="../css/contact.css" /> +<link rel="stylesheet" href="../css/footer.css" /> +<link rel="icon" type="image/png" href="../css/images/favicon.png"/> </head> <body> <header> <div class="nav-bar"> <nav> - <a class="img" href="../index.html"><img src="./css/images/logoKlaxit_BBCD_Color.webp" alt="Logo Klaxit"></a> + <a class="img" href="../index.html"><img src="../css/images/logoKlaxit_BBCD_Color.webp" alt="Logo Klaxit"></a> <div> <a href="reserver.html">PASSAGER</a> <a href="conducteur.html">CONDUCTEUR</a> @@ -32,24 +33,40 @@ </header> <main> <section class="corp"> - <div class="Container"> - <div class="corpContainer"> - <div class="connect-panel"> - <div class="panel"> - <form> - <div class="texte"> - <label for="Départ">Votre point de départ :</label> - <input type="string" id="lieux"/> - <label for="Heure">Heure de départ :</label> - <input type="nombre" id="heure"> - </div> - <div class="button"> - <button class="confirm-button" type="submit">Confirmer</button> - </div> - </form> - </div> + + <div class="connection-success"> + Nous avons bien recus votre demande ! <br> + Vous pouvez desormais <a href="../index.html">retourner a l'accueil</a></a> + </div> + + + + <div class="formContainer" style="margin-top: 10%;"> + <div class="corpImg"> + <form action="contact-result.html" method="post"> + <label class="titreForm">Formulaire de contact : <br><br></label> + <div class="dispoForm"> + <label class="nomForm"> + <input name="submitted-name" autocomplete="nom" placeholder="Votre nom"/> + </label> + <label class="prenomForm"> + <input name="submitted-surname" autocomplete="prenom" placeholder="Votre prénom"/> + </label><br><br> + </div> + <label id="email"> + <input type="email" name="email" id="emailform" placeholder="Votre adresse e-mail"/> + </label> + <label> + <br><br> + <textarea name="text" id="text" placeholder="Votre message"></textarea> + </label> + <label> + <input class="btn-purple" type="submit" name="send" value="ENVOYER VOTRE MESSAGE"> + </label> + </form> </div> </div> + </section> </main> diff --git a/forms/index-result.html b/forms/index-result.html index 72ec5af..f757451 100644 --- a/forms/index-result.html +++ b/forms/index-result.html @@ -6,6 +6,7 @@ <link rel='stylesheet' href="../css/styles.css"> <link rel='stylesheet' href="../css/login.css"> <link rel='stylesheet' href="../css/footer.css"> + <link rel="icon" type="image/png" href="../css/images/favicon.png"/> </head> <body> diff --git a/forms/login-result.html b/forms/login-result.html index b961fdf..77da06c 100644 --- a/forms/login-result.html +++ b/forms/login-result.html @@ -2,10 +2,11 @@ <html> <head> <meta charset='utf-8'> - <title>Klaxit</title> + <title>Klaxit - Connection</title> <link rel='stylesheet' href="../css/styles.css"> <link rel='stylesheet' href="../css/login.css"> <link rel='stylesheet' href="../css/footer.css"> + <link rel="icon" type="image/png" href="../css/images/favicon.png"/> </head> <body> diff --git a/forms/reserver-result.html b/forms/reserver-result.html index f2f2f9f..e8bc831 100644 --- a/forms/reserver-result.html +++ b/forms/reserver-result.html @@ -6,6 +6,7 @@ <link rel='stylesheet' href="../css/styles.css"> <link rel='stylesheet' href="../css/footer.css"> <link rel='stylesheet' href="../css/reserver-result.css"> + <link rel="icon" type="image/png" href="../css/images/favicon.png"/> </head> <body> diff --git a/forms/reserver-result2.html b/forms/reserver-result2.html index 71f231a..46c204d 100644 --- a/forms/reserver-result2.html +++ b/forms/reserver-result2.html @@ -7,6 +7,7 @@ <link rel='stylesheet' href="../css/reserver.css"> <link rel='stylesheet' href="../css/footer.css"> <link rel='stylesheet' href="../css/reserver-result.css"> + <link rel="icon" type="image/png" href="../css/images/favicon.png"/> </head> <body> diff --git a/index.html b/index.html index 37dc8b2..3d0c750 100644 --- a/index.html +++ b/index.html @@ -2,9 +2,10 @@ <html> <head> <meta charset='utf-8'> - <title>Acceuil</title> + <title>Klaxit - Accueil</title> <link rel='stylesheet' href="./css/index.css"> <link rel='stylesheet' href="./css/footer.css"> + <link rel="icon" type="image/png" href="./css/images/favicon.png"/> </head> <body> diff --git a/info.html b/info.html index 30b3e03..7ef22a4 100644 --- a/info.html +++ b/info.html @@ -2,9 +2,10 @@ <html lang="fr"> <head> <meta charset="UTF-8"> -<title>Qui sommes-nous ?</title> +<title>Klaxit - Qui sommes-nous ?</title> <link rel="stylesheet" href="./css/info.css" /> <link rel="stylesheet" href="./css/footer.css" /> +<link rel="icon" type="image/png" href="./css/images/favicon.png"/> </head> <body> diff --git a/login.html b/login.html index 8baf3a0..fd4fef5 100644 --- a/login.html +++ b/login.html @@ -2,10 +2,11 @@ <html> <head> <meta charset='utf-8'> - <title>Klaxit</title> + <title>Klaxit - Connection</title> <link rel='stylesheet' href="./css/styles.css"> <link rel='stylesheet' href="./css/footer.css"> <link rel='stylesheet' href="./css/login.css"> + <link rel="icon" type="image/png" href="./css/images/favicon.png"/> </head> <body> diff --git a/reserver.html b/reserver.html index e103b74..d30cec9 100644 --- a/reserver.html +++ b/reserver.html @@ -6,6 +6,7 @@ <link rel='stylesheet' href="./css/styles.css"> <link rel='stylesheet' href="./css/footer.css"> <link rel='stylesheet' href="./css/reserver.css"> + <link rel="icon" type="image/png" href="./css/images/favicon.png"/> </head> <body> -- GitLab