-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustomer.html
More file actions
55 lines (55 loc) · 1.7 KB
/
customer.html
File metadata and controls
55 lines (55 loc) · 1.7 KB
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="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Customer</title>
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"
/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head>
<body>
<h1 id="customer"></h1>
<button class="btn btn-danger" id="logout">Logout</button>
<br /><br /><br />
<button class="btn btn-primary" id="gotocart">Go to cart</button>
<div class="row" id="display_products_div"></div>
<!-- Modal -->
<div class="modal fade" id="myModal" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button
type="button"
id="btn_cross"
class="close"
data-dismiss="modal"
>
×
</button>
</div>
<div class="modal-body">
<img id="img_in_modal" />
<p id="description_in_modal"></p>
</div>
<div class="modal-footer">
<button
type="button"
id="close_btn"
class="btn btn-danger"
data-dismiss="modal"
>
Close
</button>
</div>
</div>
</div>
</div>
<script src="customer.js"></script>
</body>
</html>