nettoyage dossier
This commit is contained in:
Binary file not shown.
Before Width: | Height: | Size: 115 KiB |
BIN
background.jpg
BIN
background.jpg
Binary file not shown.
Before Width: | Height: | Size: 14 KiB |
BIN
burger.png
BIN
burger.png
Binary file not shown.
Before Width: | Height: | Size: 14 KiB |
9
java.js
9
java.js
@@ -1,9 +0,0 @@
|
|||||||
const burger = document.querySelector('.burger');
|
|
||||||
const nav = document.querySelector('.nav-links');
|
|
||||||
|
|
||||||
burger.addEventListener('click', () => {
|
|
||||||
nav.classList.toggle('nav-active');
|
|
||||||
|
|
||||||
|
|
||||||
burger.classList.toggle('toggle');
|
|
||||||
});
|
|
107
page_acceuil.css
107
page_acceuil.css
@@ -1,107 +0,0 @@
|
|||||||
body {
|
|
||||||
font-family: Arial, sans-serif;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
header {
|
|
||||||
background-color: #333;
|
|
||||||
color: #fff;
|
|
||||||
padding: 10px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
nav ul {
|
|
||||||
list-style: none;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
display: flex;
|
|
||||||
flex-wrap: nowrap;
|
|
||||||
}
|
|
||||||
|
|
||||||
nav ul li {
|
|
||||||
display: inline-block;
|
|
||||||
margin-right: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
nav ul li a {
|
|
||||||
color: #fff;
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
main {
|
|
||||||
padding: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.banner {
|
|
||||||
text-align: center;
|
|
||||||
background-image: url('lien_vers_image_banner.jpg');
|
|
||||||
background-size: cover;
|
|
||||||
color: #fff;
|
|
||||||
padding: 100px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.banner h1 {
|
|
||||||
font-size: 3em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.banner p {
|
|
||||||
font-size: 1.5em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn {
|
|
||||||
display: inline-block;
|
|
||||||
padding: 10px 20px;
|
|
||||||
background-color: #FF0000;
|
|
||||||
color: #fff;
|
|
||||||
text-decoration: none;
|
|
||||||
border-radius: 5px;
|
|
||||||
margin-top: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn:hover {
|
|
||||||
background-color: #990000;
|
|
||||||
}
|
|
||||||
|
|
||||||
footer {
|
|
||||||
background-color: #333;
|
|
||||||
color: #fff;
|
|
||||||
text-align: center;
|
|
||||||
padding: 10px 0;
|
|
||||||
position: absolute;
|
|
||||||
bottom: 0;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.burger {
|
|
||||||
display: none;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.line1, .line2, .line3 {
|
|
||||||
width: 25px;
|
|
||||||
height: 3px;
|
|
||||||
background-color: #333;
|
|
||||||
margin: 5px;
|
|
||||||
transition: all 0.3s ease;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media screen and (max-width: 768px) {
|
|
||||||
.nav-links {
|
|
||||||
display: none;
|
|
||||||
width: 100%;
|
|
||||||
text-align: center;
|
|
||||||
position: absolute;
|
|
||||||
background-color: #f9f9f9;
|
|
||||||
top: 80px;
|
|
||||||
left: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav-links li {
|
|
||||||
display: block;
|
|
||||||
margin-top: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.burger {
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
}
|
|
@@ -1,47 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="fr">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<title>Pegasus Services</title>
|
|
||||||
<link rel="stylesheet" href="page_acceuil.css">
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<header>
|
|
||||||
<div class="logo">
|
|
||||||
<img src="logo1.jpg" alt="Pegasus Services Logo">
|
|
||||||
</div>
|
|
||||||
<nav class="nav">
|
|
||||||
<ul class="nav-links">
|
|
||||||
<li><a href="#">Accueil</a></li>
|
|
||||||
<li><a href="#">Services</a></li>
|
|
||||||
<li><a href="#">Véhicules</a></li>
|
|
||||||
<li><a href="#">Contact</a></li>
|
|
||||||
</ul>
|
|
||||||
<div class="burger">
|
|
||||||
<div class="line1"></div>
|
|
||||||
<div class="line2"></div>
|
|
||||||
<div class="line3"></div>
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
<section class="banner">
|
|
||||||
<h1>Bienvenue chez Pegasus Services</h1>
|
|
||||||
<p>La référence pour tous vos besoins en véhicules spéciaux.</p>
|
|
||||||
<a href="#" class="btn">Découvrez nos services</a>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section class="services">
|
|
||||||
<h2>Nos Services</h2>
|
|
||||||
<p>Découvrez nos services pour des véhicules aériens, maritimes et terrestres.</p>
|
|
||||||
<!-- Insérer des informations sur les services proposés -->
|
|
||||||
</section>
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<p>© 2024 Pegasus Services - Tous droits réservés</p>
|
|
||||||
</footer>
|
|
||||||
<script src="java.js"></script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
BIN
pegasus.zip
BIN
pegasus.zip
Binary file not shown.
136
reservation.css
136
reservation.css
@@ -1,136 +0,0 @@
|
|||||||
body {
|
|
||||||
font-family: 'Arial', sans-serif;
|
|
||||||
background-color: #ffffff;
|
|
||||||
color: #000;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
height: 100vh;
|
|
||||||
}
|
|
||||||
|
|
||||||
header {
|
|
||||||
position: fixed;
|
|
||||||
background-color: #162938;
|
|
||||||
top: 0;
|
|
||||||
left: -50;
|
|
||||||
width: 100%;
|
|
||||||
padding: 20px 100px;
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
align-items: center;
|
|
||||||
z-index: 99;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
.navigation a {
|
|
||||||
position: relative;
|
|
||||||
font-size: 1.1em;
|
|
||||||
color: #fff;
|
|
||||||
text-decoration: none;
|
|
||||||
font-weight: 500;
|
|
||||||
margin-left: 40px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navigation a::after {
|
|
||||||
content: '';
|
|
||||||
position: absolute;
|
|
||||||
left: 0;
|
|
||||||
bottom: -6px;
|
|
||||||
width: 100%;
|
|
||||||
height: 3px;
|
|
||||||
background: #fff;
|
|
||||||
border-radius: 5px;
|
|
||||||
transform-origin: right;
|
|
||||||
transform: scaleX(0);
|
|
||||||
transition: transform .5s;
|
|
||||||
|
|
||||||
}
|
|
||||||
.navigation a:hover::after {
|
|
||||||
transform-origin: left;
|
|
||||||
transform: scaleX(1);
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
.navigation .btnLogin-popup {
|
|
||||||
width: 130px;
|
|
||||||
height: 50px;
|
|
||||||
background: transparent;
|
|
||||||
border: 2px solid #fff;
|
|
||||||
outline: none;
|
|
||||||
border-radius: 6px;
|
|
||||||
cursor: pointer;
|
|
||||||
font-size: 1.1em;
|
|
||||||
color: #fff;
|
|
||||||
font-weight: 500;
|
|
||||||
margin-left: 40px;
|
|
||||||
transition: .5s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navigation .btnLogin-popup:hover {
|
|
||||||
background: #fff;
|
|
||||||
color: #162938;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
h1, h2 {
|
|
||||||
color: #ffffff;
|
|
||||||
}
|
|
||||||
|
|
||||||
form {
|
|
||||||
width: 70%;
|
|
||||||
max-width: 600px;
|
|
||||||
}
|
|
||||||
|
|
||||||
div {
|
|
||||||
margin-bottom: 20px;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
label {
|
|
||||||
display: block;
|
|
||||||
margin-bottom: 5px;
|
|
||||||
color: #162938;
|
|
||||||
}
|
|
||||||
|
|
||||||
select, input, textarea {
|
|
||||||
width: 100%;
|
|
||||||
padding: 8px;
|
|
||||||
margin-bottom: 10px;
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
|
|
||||||
button {
|
|
||||||
background-color: #162938;
|
|
||||||
color: #fff;
|
|
||||||
padding: 10px 20px;
|
|
||||||
border: none;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
button:hover {
|
|
||||||
background-color: #333;
|
|
||||||
}
|
|
||||||
|
|
||||||
ul {
|
|
||||||
list-style: none;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
.date-container {
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
width: 50%; /* Ajuste selon tes besoins */
|
|
||||||
margin-top: 40px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.date-container li {
|
|
||||||
width: 48%; /* Ajuste selon tes besoins */
|
|
||||||
}
|
|
||||||
|
|
||||||
.date-container label.date-label {
|
|
||||||
vertical-align: top;
|
|
||||||
}
|
|
@@ -1,82 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="fr">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<title>Réservation d'Équipements</title>
|
|
||||||
<link rel="stylesheet" href="reservation.css">
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<header>
|
|
||||||
<h2 class="logo">Logo</h2>
|
|
||||||
<nav class="navigation">
|
|
||||||
<a href ="#">Accueil</a>
|
|
||||||
<a href ="#">Réservation</a>
|
|
||||||
<a href ="#">À propos</a>
|
|
||||||
<a href ="#">Contact</a>
|
|
||||||
<a href ="#">FAQ</a>
|
|
||||||
<button class ="btnLogin-popup">Connexion</button>
|
|
||||||
</nav>
|
|
||||||
</header>
|
|
||||||
<h1>Réservation d'Équipements</h1>
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<label for="equipmentType">Type d'Équipement :</label>
|
|
||||||
<select id="equipmentType">
|
|
||||||
<option value="terrestre">Équipement Terrestre</option>
|
|
||||||
<option value="maritime">Équipement Maritime</option>
|
|
||||||
<option value="aerien">Équipement Aérien</option>
|
|
||||||
</select>
|
|
||||||
</div>
|
|
||||||
<div class="date-container">
|
|
||||||
<li>
|
|
||||||
<label class="date-label" for="startDate">Date de Début :</label>
|
|
||||||
<input type="date" id="startDate" required>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<label class="date-label" for="endDate">Date de Fin :</label>
|
|
||||||
<input type="date" id="endDate" required>
|
|
||||||
</li>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<h2>Équipements Disponibles :</h2>
|
|
||||||
|
|
||||||
<ul id="equipmentList"></ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<label for="fullName">Nom Complet :</label>
|
|
||||||
<input type="text" id="fullName" required>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<label for="phone">Numéro de Téléphone :</label>
|
|
||||||
<input type="tel" id="phone" required>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<label for="email">Adresse E-mail :</label>
|
|
||||||
<input type="email" id="email" required>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<h2>Récapitulatif de la Réservation :</h2>
|
|
||||||
<p id="reservationDetails"></p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div>
|
|
||||||
|
|
||||||
<button onclick="confirmReservation()">Confirmer la Réservation</button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<script></script>
|
|
||||||
function confirmReservation() {
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
Reference in New Issue
Block a user