-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconsumer.html
148 lines (117 loc) · 5.55 KB
/
consumer.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang=""> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang=""> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang=""> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js" lang="">
<!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>My manuals</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" href="ico/apple-touch-icon.png">
<link rel="stylesheet" href="css/bootstrap.min.css">
<style>
body {
padding-top: 50px;
}
</style>
<link rel="stylesheet" href="css/bootstrap-theme.min.css">
<link rel="stylesheet" href="css/main.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css" rel="stylesheet" />
<link href="css/iziToast.css" rel="stylesheet" />
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script>
<script>window.html5 || document.write('<script src="js/vendor/html5shiv.js"><\/script>')</script>
<![endif]-->
</head>
<body>
<!--[if lt IE 8]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!--left menu-->
<ul class="nav navbar-nav">
<li class="dropdown"><a id="homeButton" class="navbar-brand" href="./consumer.html">Home</a></li>
<li class="dropdown"><a class="navbar-brand dropdown-toggle" data-toggle="dropdown" href="./products.html">Products <span class="caret"></span></a>
<!-- drop down menu-->
<ul id="menuCategories" class="dropdown-menu " role="menu">
<li>
<a id="allCategories"> </a>
</li>
</ul>
</li>
</ul>
</div>
<div id="navbar" class="navbar-collapse collapse">
<form id="userRightArea" class="navbar-right" role="form">
<ul id="userRightProfile" class="nav navbar-nav navbar-right">
<li class="dropdown">
<a id="userNameDisplay" href="#" class="" data-toggle="dropdown"><span id="GreetingsUser"></span><span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#">Prefferences</a></li>
<li class="divider"></li>
<li><a id="userLogout" href="#">Sign Out</a></li>
</ul>
</li>
</ul>
</form>
<div id="topSearchBar" class="input-group col-md-6">
<input id="searchBox" type="text" class=" search-query form-control" placeholder="Search" name="q">
<div class="input-group-btn">
<button id="searchButton" class="btn btn-default" type="submit"><i class="glyphicon glyphicon-search"></i></button>
</div>
</div>
</div>
<!--/.navbar-collapse -->
</div>
</nav>
<div class="jumbotron">
<div class="container">
<h1>My Products </h1>
<p>Browse through the products stored into your account. You can easily manage them through this page.</p>
</div>
</div>
<div id="mainSearchBox" class="container">
<div class="container">
<div id="searchResults" class="wrapper">
<table id="acrylic">
<thead>
<tr>
<th id="heartFavorite"> </th>
<th>Name</th>
<th>Model</th>
<th>Company</th>
<th>Categories</th>
</tr>
</thead>
<tbody id="TableBody">
</tbody>
</table>
</div>
</div>
</div>
<!-- JS files -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
<script src="js/vendor/bootstrap.min.js"></script>
<script src="js/vendor/iziToast.min.js"></script>
<script src="js/main.js"></script>
<script src="js/userInfo.js"></script>
<script src="js/userLogout.js"></script>
<script src="js/sessionHandle.js"></script>
<script src="js/getConsumerProducts.js"></script>
<script src="js/vendor/iziToast.min.js"></script>
<script src="js/favoriteProduct.js"></script>
<script src="js/searchByName.js"></script>
</body>
</html>