-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfirmation.html
55 lines (41 loc) · 2.1 KB
/
confirmation.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
<!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/confirmation.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="w-75 mx-auto my-5 py-5 text-white text-center">
<h1 id="confirmationText" class="w-100 m-0 py-5 px-3"></h1>
</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>