-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvalidation.html
92 lines (72 loc) · 4.18 KB
/
validation.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-wEmeIV1mKuiNpC+IOBjI7aAzPcEZeedi5yW5f2yOq55WWLwNGmvvx4Um1vskeMj0" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.3/css/all.css" integrity="sha384-SZXxX4whJ79/gErwcOYf+zWLeJdY/qpuqC4cAa9rOGUstPomtqpuNWT9wdPEn2fk" crossorigin="anonymous">
<script type="text/javascript" src="dist/validation.bundle.js"></script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<title>Site d'e-commerce</title>
</head>
<body>
<header>
<nav class="m-0 p-0 navbar navbar-light bg-light justify-content-between ">
<a class="navbar-brand mx-2" href="Index.html"><img src="./src/Images/logo_orinoco.png" id="Logo_Orinoco" /></a>
<div class="row ">
<div class="col-9">
<input class="form-control input-lg" type="Recherche" placeholder="Recherche" aria-label="Recherche">
</div>
<div class="col-1">
<button class="btn btn-outline-success my-2 my-sm-0" type="submit">Recherche</button>
</div>
</div>
<div><a class="btn btn-outline-success mx-3 my-2 my-sm-0" href="validation.html"><i
class="fas fa-shopping-cart"></i> Panier</a></div>
</nav>
<div class="Header_fond">
</div>
</header>
<main class="mx-auto px-3 my-5">
<h1 class="TitrePrincipal">VALIDATION DE LA COMMANDE</h1>
<section class="Panier ">
<h2>Panier</h2>
<div id="grille_produits" class="container-fluid px-0 d-flex flex-column">
</div>
<div id="ligneTotal" class="container-fluid mb-5">
<div class="labelTotal bg-white px-1 py-3 ">TOTAL :</div>
<strong id="Total" class="py-3 text-center"></strong>
</div>
</section>
<section class="vide"></section>
<section class="Destinataire mb-auto">
<H2>Destinataire</H2>
<form class="formDestinataire">
<div class="row col">
<label for="Prenom">Prénom</label>
<input type="text" pattern="[A-z][A-z ,.'-]{1,}" required class="form-control input-lg mb-2" name="Prenom" id="Prenom" aria-describedby="Prenom" title="Le prénom ne doit pas contenir de chiffre" placeholder="Entrez votre prénom" />
<label for="Nom">Nom</label>
<input type="text" pattern="[A-z][A-z ,.'-]{1,}" required class="form-control input-lg mb-2" name="Nom" id="Nom" aria-describedby="Nom" placeholder="Entrez votre nom de famille" />
<label for="Adresse">Adresse</label>
<textarea type="address" pattern="[A-9 ,.'-]{1,}" required rows="3" class="form-control input-lg mb-2" name="Adresse" id="Adresse" aria-describedby="Adresse" placeholder="Entrez votre adresse"></textarea>
<label for="Ville">Ville</label>
<input type="text" pattern="[A-z][A-z ,.'-]{1,}" required class="form-control input-lg mb-2" name="Ville" id="Ville" aria-describedby="Ville" placeholder="Entrez votre ville" />
<label for="Email">Email</label>
<input type="email" class="form-control input-lg mb-2" required id="Email" aria-describedby="Email" placeholder="Entrez votre email" />
</div>
<div class="row ">
<input type="button" class="btn btn-success btn-validerpanier mx-2 py-3 my-3 col" value="Commander" />
<input type="button" class="btn btn-info btn-viderpanier mx-2 py-3 my-3 col" value="Vider le panier" />
</div>
</form>
</section>
</main>
<footer class="py-5 white bg-secondary text-center ">
<a href="#" class="text-white mx-2">Conditions générales de vente</a>
<a href="#" class="text-white mx-2">Qui sommes nous ?</a>
<a href="#" class="text-white mx-2">Nous contacter</a>
</footer>
</body>
</html>