forked from js-tasks-ru/jsbasic-20191014_evgenii96
-
Notifications
You must be signed in to change notification settings - Fork 0
/
checkout.html
64 lines (58 loc) · 2.04 KB
/
checkout.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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="./assets/custom.css">
<title>Проект</title>
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg navbar-light">
<div class="container">
<a class="navbar-brand" href="#"><strong>AnyShop</strong></a>
</div>
</nav>
</header>
<main role="main">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-10">
<form class="user-form">
<h3 class="h5 mb-4 mt-4 text-md-center">Your order</h3>
<div class="alert alert-primary" role="alert">
Your order has been confirmed. The confirmation email is sent to you address
</div>
<div class="product-list-box-wrapper">
<!-- ВОТ ЗДЕСЬ БУДЕТ СПИСОК ТОВАРОВ В КОРЗИНЕ -->
</div>
</form>
</div>
</div>
</div>
</main>
<footer class="footer">
<div class="container">
<div class="footer-inner">
<div class="footer-menu">
<a href="#" class="text-muted">Terms and Conditions</a>
<span class="d-none d-md-inline-flex">|</span>
<a href="#" class="text-muted">Privacy</a>
<span class="d-none d-md-inline-flex">|</span>
<a href="#" class="text-muted">Cookies</a>
<span class="d-none d-md-inline-flex">|</span>
<a href="#" class="text-muted">Home shopping guarantee</a>
</div>
<div>
© 1998-2019, AnyShop.com, Inc. or its affiliates
</div>
</div>
</div>
</footer>
<script src="project-import-error-handling.js"></script>
<script type="module" src="9-module-1-task.proxy-import.js"></script>
</body>
</html>