-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
634 lines (530 loc) · 29 KB
/
index.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
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
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
<!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="style.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous" />
<!-- font awesome cdn link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<title>Bookit</title>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top">
<a class="navbar-brand" href="#">Bookit</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="/">Home <span class="sr-only">(current)</span></a>
</li>
<!-- <li class="nav-item">
<a class="nav-link" href="/about.html">About</a>
</li> -->
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Topics
</a>
<div class="dropdown-menu " aria-labelledby="navbarDropdown">
<a class="dropdown-item " href="#books">Book</a>
<a class="dropdown-item " href="#magazines">Magazine</a>
<a class="dropdown-item " href="#journals">Journals</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item " href="/contact.html">Contact</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="/contact.html">Contact Us</a>
</li>
</ul>
<form class="form-inline my-2 my-lg-0">
</form>
<div class="mx-2">
<button class="btn btn-primary" data-toggle="modal" data-target="#loginModal">Login</button>
<button class="btn btn-primary" data-toggle="modal" data-target="#signupModal">SignUp</button>
</div>
</div>
</nav>
<!-- !-- Login Modal -->
<div class="modal fade" id="loginModal" tabindex="-1" role="dialog" aria-labelledby="loginModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Log in to Bookit</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<form method="post" action="login.php">
<div class="form-group">
<label for="exampleInputEmail1">Email address</label>
<input type="email" name="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp">
<small id="emailHelp" class="form-text text-muted">We'll never share your email with anyone else.</small>
</div>
<div class="form-group">
<label for="exampleInputPassword1">Password</label>
<input type="password" name="password" class="form-control" id="exampleInputPassword1">
</div>
<div class="form-group form-check">
<select name="user_type" id="">
<option value="admin" >Admin</option>
<option value="user">User</option>
</select>
<!-- <label class="form-check-label" for="exampleCheck1">Check me out</label> -->
</div>
<button name="Login" value="Login" type="submit" class="btn btn-primary">Login</button>
</form>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!---Admin Login Modal -->
<div class="modal fade" id="adminModal" tabindex="-1" role="dialog" aria-labelledby="adminModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Login to Bookit</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<form method="post" action="login.php">
<div class="form-group">
<label for="exampleInputEmail1">Email address</label>
<input type="email" name="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp">
<small id="emailHelp" class="form-text text-muted">We'll never share your email with anyone else.</small>
</div>
<div class="form-group">
<label for="exampleInputPassword1">Password</label>
<input type="password" name="password" class="form-control" id="exampleInputPassword1">
</div>
<div class="form-group form-check">
<input type="checkbox" class="form-check-input" id="exampleCheck1">
<label class="form-check-label" for="exampleCheck1">Check me out</label>
</div>
<button name="Login" value="Login" type="submit" class="btn btn-primary">Login</button>
</form>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Sign Up Modal -->
<div class="modal fade" id="signupModal" tabindex="-1" role="dialog" aria-labelledby="signupModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Get an Bookit Account</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<form method="post" action="SIgnup.php">
<div class="form-group">
<label for="exampleInputEmail1">Enter Your Name</label>
<input type="text" name="username" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp">
<small id="emailHelp" class="form-text text-muted">We'll never share your Name with anyone else.</small>
</div>
<div class="form-group">
<label for="exampleInputEmail1">Email address</label>
<input type="email" name="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp">
<small id="emailHelp" class="form-text text-muted">We'll never share your email with anyone else.</small>
</div>
<div class="form-group">
<label for="exampleInputPassword1">Password</label>
<input type="password" name="password" class="form-control" id="exampleInputPassword1">
</div>
<div class="form-group">
<label for="cexampleInputPassword1">Confirm Password</label>
<input type="password" name="cpassword" class="form-control" id="cexampleInputPassword1">
</div>
<input type="submit" name="submit" value="submit" class="btn btn-primary">
</form>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- carousel -->
<div id="carouselExampleCaptions" class="carousel slide carousel-fade" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleCaptions" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleCaptions" data-slide-to="1"></li>
<li data-target="#carouselExampleCaptions" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="images/1.jpg" class="d-block w-100" alt="..." width="90%" height="600">
<div class="carousel-caption d-none d-md-block">
<h1>Welcome to Bookit</h1>
<H2>New Books</H2>
</div>
</div>
<div class="carousel-item">
<img src="images/2.jpg" class="d-block w-100" alt="..." width="90%" height="600">
<div class="carousel-caption d-none d-md-block">
<h1>The Best Books Are Here</h1>
<H2>Technology News, Development and coding</H2>
</div>
</div>
<div class="carousel-item">
<img src="images/3.jpg" class="d-block w-100" alt="..." width="90%" height="600">
<div class="carousel-caption d-none d-md-block">
<h1>Award winning Books</h11>
<H2>Best Sellers</H2>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleCaptions" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleCaptions" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<!----------- book list -------------->
<div class="album py-5 bg-light">
<div class="container">
<h1 id="books">Books</h1>
<div class="row row-cols-1 row-cols-sm-2 row-cols-md-3 g-3">
<div class="col">
<div class="card shadow-sm">
<img src="images/book1.jpg" class="bd-placeholder-img card-img-top" width="100%" height="300">
<div class="card-body">
<a href="link.html"><h5>The Theory Of Everything</h5></a>
<h6>By Stephen Hawkings</h6>
<h4>₹ 120 </h4>
<p class="card-text">This is a wider card with supporting text below as a natural lead-in to additional content.</p>
<div class="d-flex justify-content-between align-items-center">
</div>
</div>
</div>
</div>
<div class="col">
<div class="card shadow-sm">
<img src="images/book2.jpg" class="bd-placeholder-img card-img-top" width="100%" height="300">
<div class="card-body">
<a href="buy.html"><h5>Freedom In Exile</h5></a>
<h6>By Dalai lama </h6>
<h4>₹ 338 </h4>
<p class="card-text">This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p>
</div>
</div>
</div>
<div class="col">
<div class="card shadow-sm">
<img src="images/book3.jpg" class="bd-placeholder-img card-img-top" width="100%" height="300">
<div class="card-body">
<a href="buy.html"><h5>The Communist menifesto</h5></a>
<h6>By Karl Marx</h6>
<h4>₹ 75 </h4>
<p class="card-text">This is a wider card with supporting text below as a natural lead-in to additional content. </p>
<div class="d-flex justify-content-between align-items-center">
</div>
</div>
</div>
</div>
<div class="col">
<div class="card shadow-sm">
<img src="images/book4.jpg" class="bd-placeholder-img card-img-top" width="100%" height="350">
<div class="card-body">
<a href="buy.html"><h5>Das Capital</h5></a>
<h6>By Karl Marx</h6>
<h4>₹ 368 </h4>
<p class="card-text">Lorem ipsum dolor, sit amet consectetur adipisicing elit. Consequuntur, dolores.</p>
</div>
</div>
</div>
<!----- 2nd row ----->
<div class="album py-5 bg-light">
<div class="container">
<div class="row row-cols-1 row-cols-sm-2 row-cols-md-3 g-3">
<div class="col">
<div class="card shadow-sm">
<img src="images/book5.jpg" class="bd-placeholder-img card-img-top" width="100%" height="300">
<div class="card-body">
<a href="buy.html"><h5>The promise land</h5></a>
<h6>By Barak Obama </h6>
<h4>₹ 400 </h4>
<p class="card-text">This is a wider card with supporting text below as a natural lead-in to additional content.</p>
</div>
</div>
</div>
<div class="col">
<div class="card shadow-sm">
<img src="images/book6.jpg" class="bd-placeholder-img card-img-top" width="100%" height="300">
<div class="card-body">
<a href="buy.html"><h5>My Idea Of Education </h5></a>
<h6>Swami Vivekananda </h6>
<h4>₹ 65 </h4>
<p class="card-text">This is a wider card with supporting text below as a natural lead-in to additional content. </p>
<div class="d-flex justify-content-between align-items-center">
</div>
</div>
</div>
</div>
<div class="col">
<div class="card shadow-sm">
<img src="images/book7.jpg" class="bd-placeholder-img card-img-top" width="100%" height="300">
<div class="card-body">
<a href="buy.html"><h5>Poverty and Un-British Rule In India</h5></a>
<h6>Dadabhai Nauroji</h6>
<h4>₹ 170 </h4>
<p class="card-text">This is a wider card with supporting text below as a natural . </p>
</div>
</div>
</div>
<div class="col">
<div class="card shadow-sm">
<img src="images/book8.jpg" class="bd-placeholder-img card-img-top" width="100%" height="350">
<div class="card-body">
<a href="buy.html"><h5>The Indian struggle</h5></a>
<h6>Subhash Chandra Bose</h6>
<h4>₹ 499 </h4>
<p class="card-text">Lorem ipsum dolor, sit amet consectetur adipisicing elit. </p>
</div>
</div>
</div>
<!----- Magazin ----->
<div class="album py-5 bg-light">
<div class="container">
<h2 id="magazines">Magazine</h2>
<div class="row row-cols-1 row-cols-sm-2 row-cols-md-3 g-3">
<div class="col">
<div class="card shadow-sm">
<img src="images/book9.jpg" class="bd-placeholder-img card-img-top" width="100%" height="350">
<div class="card-body">
<a href="buy.html"><h5>India Today</h5></a>
<h6>India Today Group </h6>
<h4>₹ 75 </h4>
<p class="card-text">This is a wider card with supporting text below as a natural lead-in to additional content.</p>
</div>
</div>
</div>
<div class="col">
<div class="card shadow-sm">
<img src="images/book10.jpg" class="bd-placeholder-img card-img-top" width="100%" height="300">
<div class="card-body">
<a href="buy.html"><h5>Man's world magazine </h5></a>
<h6>Man's world India </h6>
<h4>₹ 250 </h4>
<p class="card-text">This is a wider card with supporting text below as a natural lead-in to additional content. </p>
<div class="d-flex justify-content-between align-items-center">
</div>
</div>
</div>
</div>
<div class="col">
<div class="card shadow-sm">
<img src="images/book11.jpg" class="bd-placeholder-img card-img-top" width="100%" height="300">
<div class="card-body">
<a href="buy.html"><h5>Havard buisness Review</h5></a>
<h6>By English And American Books</h6>
<h4>₹ 1485 </h4>
<p class="card-text">This is a wider card with supporting text below as a natural . </p>
</div>
</div>
</div>
<div class="col">
<div class="card shadow-sm">
<img src="images/book12.jpg" class="bd-placeholder-img card-img-top" width="100%" height="350">
<div class="card-body">
<a href="buy.html"><h5>cosmopoliton</h5></a>
<h6>cosmopoliton</h6>
<h4>₹ 175 </h4>
<p class="card-text">Lorem ipsum dolor, sit amet consectetur adipisicing elit. </p>
</div>
</div>
</div>
<div class="album py-5 bg-light">
<div class="container">
<div class="row row-cols-1 row-cols-sm-2 row-cols-md-3 g-3">
<div class="col">
<div class="card shadow-sm">
<img src="images/book13.jpg" class="bd-placeholder-img card-img-top" width="100%" height="300">
<div class="card-body">
<a href="buy.html"><h5>women's era magaziene</h5></a>
<h6>women's era </h6>
<h4>₹ 100 </h4>
<p class="card-text">This is a wider card with supporting text below as a natural lead-in to additional content.</p>
</div>
</div>
</div>
<div class="col">
<div class="card shadow-sm">
<img src="images/book14.jpg" class="bd-placeholder-img card-img-top" width="100%" height="300">
<div class="card-body">
<a href="buy.html"><h5>Reader's digest </h5></a>
<h6>India Today</h6>
<h4>₹ 100 </h4>
<p class="card-text">This is a wider card with supporting text below as a natural lead-in to additional content. </p>
<div class="d-flex justify-content-between align-items-center">
</div>
</div>
</div>
</div>
<div class="col">
<div class="card shadow-sm">
<img src="images/book15.jpg" class="bd-placeholder-img card-img-top" width="100%" height="300">
<div class="card-body">
<a href="buy.html"><h5>outlook magazine</h5></a>
<h6>outlook </h6>
<h4>₹ 70 </h4>
<p class="card-text">This is a wider card with supporting text below as a natural . </p>
</div>
</div>
</div>
<div class="col">
<div class="card shadow-sm">
<img src="images/book16.jpg" class="bd-placeholder-img card-img-top" width="100%" height="350">
<div class="card-body">
<a href="buy.html"><h5>forbes India</h5></a>
<h6>Network 18 Media</h6>
<h4>₹ 200 </h4>
<p class="card-text">Lorem ipsum dolor, sit amet consectetur adipisicing elit. </p>
</div>
</div>
</div>
<!-- Journals-->
<div class="album py-5 bg-light">
<div class="container">
<h2>Journals</h2>
<div class="row row-cols-1 row-cols-sm-2 row-cols-md-3 g-3">
<div class="col">
<div class="card shadow-sm">
<img src="images/book5.jpg" class="bd-placeholder-img card-img-top" width="100%" height="300">
<div class="card-body">
<a href="buy.html"><h5>The promise land</h5></a>
<h6>By Barak Obama </h6>
<h4>₹ 400 </h4>
<p class="card-text">This is a wider card with supporting text below as a natural lead-in to additional content.</p>
</div>
</div>
</div>
<div class="col">
<div class="card shadow-sm">
<img src="images/book6.jpg" class="bd-placeholder-img card-img-top" width="100%" height="300">
<div class="card-body">
<a href="buy.html"><h5>My Idea Of Education </h5></a>
<h6>Swami Vivekananda </h6>
<h4>₹ 65 </h4>
<p class="card-text">This is a wider card with supporting text below as a natural lead-in to additional content. </p>
<div class="d-flex justify-content-between align-items-center">
</div>
</div>
</div>
</div>
<div class="col">
<div class="card shadow-sm">
<img src="images/book7.jpg" class="bd-placeholder-img card-img-top" width="100%" height="300">
<div class="card-body">
<a href="buy.html"><h5>Poverty and Un-British Rule In India</h5></a>
<h6>Dadabhai Nauroji</h6>
<h4>₹ 170 </h4>
<p class="card-text">This is a wider card with supporting text below as a natural . </p>
</div>
</div>
</div>
<div class="col">
<div class="card shadow-sm">
<img src="images/book8.jpg" class="bd-placeholder-img card-img-top" width="100%" height="350">
<div class="card-body">
<a href="buy.html"><h5>The Indian struggle</h5></a>
<h6>Subhash Chandra Bose</h6>
<h4>₹ 499 </h4>
<p class="card-text">Lorem ipsum dolor, sit amet consectetur adipisicing elit. </p>
</div>
</div>
</div>
<div class="album py-5 bg-light">
<div class="container">
<div class="row row-cols-1 row-cols-sm-2 row-cols-md-3 g-3">
<div class="col">
<div class="card shadow-sm">
<img src="images/book5.jpg" class="bd-placeholder-img card-img-top" width="100%" height="300">
<div class="card-body">
<a href="buy.html"><h5>The promise land</h5></a>
<h6>By Barak Obama </h6>
<h4>₹ 400 </h4>
<p class="card-text">This is a wider card with supporting text below as a natural lead-in to additional content.</p>
</div>
</div>
</div>
<div class="col">
<div class="card shadow-sm">
<img src="images/book6.jpg" class="bd-placeholder-img card-img-top" width="100%" height="300">
<div class="card-body">
<a href="buy.html"><h5>My Idea Of Education </h5></a>
<h6>Swami Vivekananda </h6>
<h4>₹ 65 </h4>
<p class="card-text">This is a wider card with supporting text below as a natural lead-in to additional content. </p>
<div class="d-flex justify-content-between align-items-center">
</div>
</div>
</div>
</div>
<div class="col">
<div class="card shadow-sm">
<img src="images/book7.jpg" class="bd-placeholder-img card-img-top" width="100%" height="300">
<div class="card-body">
<a href="buy.html"><h5>Poverty and Un-British Rule In India</h5></a>
<h6>Dadabhai Nauroji</h6>
<h4>₹ 170 </h4>
<p class="card-text">This is a wider card with supporting text below as a natural . </p>
</div>
</div>
</div>
<div class="col">
<div class="card shadow-sm">
<img src="images/book8.jpg" class="bd-placeholder-img card-img-top" width="100%" height="350">
<div class="card-body">
<a href="buy.html"><h5>The Indian struggle</h5></a>
<h6>Subhash Chandra Bose</h6>
<h4>₹ 499 </h4>
<p class="card-text">Lorem ipsum dolor, sit amet consectetur adipisicing elit. </p>
</div>
</div>
</div>
<!-- footer -->
<div class="footer">
<footer class="my-5 pt-5 text-muted text-center text-small">
<p class="mb-1">© 2022–2023 Code Buddies</p>
<ul class="list-inline">
<li class="list-inline-item"><a href="#">Privacy</a></li>
<li class="list-inline-item"><a href="#">Terms</a></li>
<li class="list-inline-item"><a href="#">Support</a></li>
</ul>
</footer>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
crossorigin="anonymous"></script>
</body>
</html>