forked from Rishabh-Kumar-Bothra/Shopping-cart_frontend
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Portal.html
70 lines (62 loc) · 2.62 KB
/
Portal.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Your-Cart</title>
<script src="js/jquery.js"></script>
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/font-awesome.css">
<link rel="stylesheet" href="css/custom.css">
<script src="js/bootstrap.js"></script>
<script src="js/cart.js"></script>
<script src="js/portal.js"></script>
</head>
<body>
<nav class="navbar navbar-toggleable navbar-inverse bg-inverse">
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarsupportedcontent"
aria-controls="navbarsupportedcontent" arai-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span></button>
<a class="navbar-brand font-italic" href="index.html">Yo cart </a>
<div class="collapse navbar-collapse" id="navbarsupportedcontent">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="index.html">Home <span class="sr-only"></span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="product.html">Products </a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="menu" data-toggle="dropdown" arai-haspopup="true" arai-expanded="false">My Account</a>
<div class="dropdown-menu" arai-labeledby="menu">
<a class="dropdown-item" href="#">Sign Up</a>
<a class="dropdown-item" href="#">Login</a>
<a class="dropdown-item" href="wishlist.html">Wishlist <i class="fa fa-heart heart-on"></i> </a>
<a class="dropdown-item" href="Portal.html">My cart <i class="fa fa-shopping-cart"></i></a>
</div>
</li>
</ul>
<form class="form-inline">
<input class="form-control mr-sm-2" size="100px" type="text" placeholder="Search for Products,Brands and More">
<button type="submit" class="btn btn-outline-primary my-2 my-sm-0">Search</button>
</form>
</div>
</nav>
<div class="container-fluid">
<div class="row">
<div class="col-6">
<h4 align="center">Shopping Kart</h4>
</div>
</div>
<table class="table table-responsive table-bordered table-hover">
<thead class="table-inverse">
<th>Product Id</th>
<th>Product Name</th>
<th>Quantity</th>
<th>Price</th>
<th>Total Price</th>
</thead>
<tbody id="product_list"></tbody>
</table>
</div>
</body>
</html>