-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathverify.html
More file actions
325 lines (304 loc) · 13.7 KB
/
verify.html
File metadata and controls
325 lines (304 loc) · 13.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
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>Verify</title>
<link href="css/verify.css" rel="stylesheet">
<link href="library/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
</head>
<body>
<!--Navigation-->
<nav class="navbar navbar-expand-lg navbar-light fixed-top">
<div class="container">
<button class="navbar-toggler navbar-toggler-left" type="button" data-toggle="collapse"
data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<a class="navbar-brand" href="home.html">
<img src="img/logo.png" width="200" height="30" class="d-inline-block">
</a>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="all-notes.html">All Notes</a>
</li>
<li class="nav-item">
<a class="nav-link" href="upload.html">Upload</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="verify.html">Verify
<span class="sr-only">(current)</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="terms-cond.html">Terms & Conditions</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact Us</a>
</li>
</ul>
</div>
<button type="button" class="btn btn-outline-primary btn-sm">Sign In</button>
</div>
</nav>
<!-- Page Content -->
<div class="container">
<!-- Page Heading -->
<div class="my-4">
<h2 class="text-center page-header">Verify Notes</h2>
</div>
<div class="form-row mt-4">
<div class="form-group col-md-7">
<label for="filter">Filter</label>
<select class="form-control-sm ml-3" id="filter">
<option>Verifiers</option>
<option>Date</option>
<option>Comments</option>
<option>Views</option>
</select>
</div>
<div class="form-group col-md-5 input-group">
<div id="basic-search" class="input-group">
<input type="text" class="basic-input form-control" placeholder="Search for notes..."
aria-label="Search for notes..."
aria-describedby="button-addon2">
<div class="input-group-append">
<button class="btn btn-outline-secondary" type="button" id="button-addon2">
<i class="fa fa-search" style="font-size:20px;"></i>
</button>
</div>
</div>
<div id="advanced-button-section">
<button id="advanced-button" onclick="showAdvanced()">Advanced Search</button>
</div>
</div>
</div>
<div class="form-group input-group">
<div id="advanced-search">
<form>
<!--Keyword-->
<div class="form-group row">
<label for="inputKeyword" class="col-sm-2 col-form-label advanced-label">Keyword</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="inputKeyword" placeholder="Keyword">
</div>
</div>
<!--User-->
<div class="form-group row">
<label for="inputUser" class="col-sm-2 col-form-label advanced-label">User</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="inputUser" placeholder="User">
</div>
</div>
<!--Subject (checkbox)-->
<div class="form-group row">
<div class="col-sm-2 advanced-label">Subject</div>
<div class="col-sm-10 advanced-label">
<div class="form-check form-check-inline">
<input class="form-check-input" type="checkbox" id="all" checked>
<label class="form-check-label" for="all">All</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input checkbox" type="checkbox" id="gridCheck2">
<label class="form-check-label" for="gridCheck2">Physics</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input checkbox" type="checkbox" id="gridCheck3">
<label class="form-check-label" for="gridCheck3">Biology</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input checkbox" type="checkbox" id="gridCheck4">
<label class="form-check-label" for="gridCheck4">Chemistry</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input checkbox" type="checkbox" id="gridCheck5">
<label class="form-check-label" for="gridCheck5">Computing</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input checkbox" type="checkbox" id="gridCheck6">
<label class="form-check-label" for="gridCheck6">Mathematics</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="checkbox" id="gridCheck7">
<label class="form-check-label" for="gridCheck7">Economics</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input checkbox" type="checkbox" id="gridCheck8">
<label class="form-check-label" for="gridCheck8">General Paper</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input checkbox" type="checkbox" id="gridCheck9">
<label class="form-check-label" for="gridCheck9">English Literature</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input checkbox" type="checkbox" id="gridCheck10">
<label class="form-check-label" for="gridCheck10">Geography</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input checkbox" type="checkbox" id="gridCheck11">
<label class="form-check-label" for="gridCheck11">History</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input checkbox" type="checkbox" id="gridCheck12">
<label class="form-check-label" for="gridCheck12">Social Studies</label>
</div>
</div>
</div>
<!--Level (radio)-->
<div class="form-group row">
<legend class="col-form-label col-sm-2 advanced-label">Level</legend>
<div class="pl-3 pt-2">
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="gridRadios" id="gridRadios1" value="option1" checked>
<label class="form-check-label" for="gridRadios1">
All
</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="gridRadios" id="gridRadios2" value="option2">
<label class="form-check-label" for="gridRadios2">
O Level
</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="gridRadios" id="gridRadios3" value="option3">
<label class="form-check-label" for="gridRadios3">
A Level
</label>
</div>
</div>
</div>
</form>
<!--Buttons-->
<div class="advanced-search-btn">
<button class="btn btn-outline-secondary" type="button" id="button-basic" onclick="showBasic()">
Back to basic search</button>
<button class="btn btn-secondary" type="button" id="button-search">Search
<i class="fa fa-search" style="font-size:20px;"></i>
</button>
</div>
</div>
</div>
</div>
<hr>
<!-- Notes One -->
<div class="row">
<div class="col-md-5 notes-container">
<img class="notes-img" src="img/respiration-watermark1.PNG" alt="">
</div>
<div class="col-md-7">
<div class="ml-3">
<h3>Respiration</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Laudantium veniam exercitationem expedita laborum at voluptate. Labore, voluptates totam at aut nemo deserunt rem magni pariatur quos perspiciatis atque eveniet unde.</p>
<a class="btn btn-primary" href="validate-notes.html">View More...</a>
</div>
</div>
<div class="row mt-3 ml-5">
<span>
<i class="fa fa-user"></i> by <a href="user.html">Johnathan</a>
| <i class="fa fa-calendar"></i> 27 Sep 2018
| <i class="fa fa-comment"></i><a href="validate-notes.html#discussion"> 4 Comments</a>
| <i class="fa fa-eye"></i> 39 Views
| <i class="fa fa-check"></i> 3 Verifiers
|
</span>
<div class="ml-2">
<span class="badge badge-warning">Biology</span>
<span class="badge badge-light">A Level</span>
</div>
</div>
</div>
<hr>
<!-- Notes Two -->
<div class="row">
<div class="col-md-5">
<img class="notes-img" src="img/Singapore-characteristics-Jiaxin.jpg" alt="">
</div>
<div class="col-md-7">
<div class="ml-3">
<h3>Singapore Notes</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Laudantium veniam exercitationem expedita laborum at voluptate. Labore, voluptates totam at aut nemo deserunt rem magni pariatur quos perspiciatis atque eveniet unde.</p>
<a class="btn btn-primary" href="#">View More...</a>
</div>
</div>
<div class="row mt-3 ml-5">
<span>
<i class="fa fa-user"></i> by <a href="user.html">Johnathan</a>
| <i class="fa fa-calendar"></i> 27 Sep 2018
| <i class="fa fa-comment"></i><a href="#"> 4 Comments</a>
| <i class="fa fa-eye"></i> 39 Views
| <i class="fa fa-check"></i> 2 Verifiers
|
</span>
<div class="ml-2">
<span class="badge badge-success">GP</span>
<span class="badge badge-light">A Level</span>
</div>
</div>
</div>
<hr>
<!-- Notes Three -->
<div class="row">
<div class="col-md-5">
<img class="notes-img" src="img/Econs2.jpg" alt="">
</div>
<div class="col-md-7">
<div class="ml-3">
<h3>Microeconomics</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Laudantium veniam exercitationem expedita laborum at voluptate. Labore, voluptates totam at aut nemo deserunt rem magni pariatur quos perspiciatis atque eveniet unde.</p>
<a class="btn btn-primary" href="#">View More...</a>
</div>
</div>
<div class="row mt-3 ml-5">
<span>
<i class="fa fa-user"></i> by <a href="user.html">Johnathan</a>
| <i class="fa fa-calendar"></i> 27 Sep 2018
| <i class="fa fa-comment"></i><a href="#"> 4 Comments</a>
| <i class="fa fa-eye"></i> 39 Views
| <i class="fa fa-check"></i> 1 Verifier
|
</span>
<div class="ml-2">
<span class="badge badge-secondary">Economics</span>
<span class="badge badge-light">A Level</span>
</div>
</div>
</div>
<hr>
<!-- Pagination -->
<ul class="pagination justify-content-center">
<li class="page-item">
<a class="page-link" href="#" aria-label="Previous">
<span aria-hidden="true">«</span>
<span class="sr-only">Previous</span>
</a>
</li>
<li class="page-item">
<a class="page-link" href="#">1</a>
</li>
<li class="page-item">
<a class="page-link" href="#">2</a>
</li>
<li class="page-item">
<a class="page-link" href="#">3</a>
</li>
<li class="page-item">
<a class="page-link" href="#" aria-label="Next">
<span aria-hidden="true">»</span>
<span class="sr-only">Next</span>
</a>
</li>
</ul>
</div>
<!-- FOOTER -->
<footer>© thenotesrefinery 2018</footer>
<script src="library/jquery/jquery.min.js"></script>
<script src="library/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="js/verify.js"></script>
</body>
</html>