index.html 26.2 KB
Newer Older
Andrej Markovski's avatar
done  
Andrej Markovski committed
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
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
<!DOCTYPE html>
<html>
  <head>
    <title>Document</title>
    <meta charset="utf-8" />
    <meta name="keywords" content="" />
    <meta name="description" content="" />
    <meta name="author" content="" />
    <meta name="viewport" content="width=device-width,initial-scale=1.0" />

    <!-- Latest compiled and minified Bootstrap 4.6 CSS -->
    <link
      rel="stylesheet"
      href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
      integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw=="
      crossorigin="anonymous"
      referrerpolicy="no-referrer"
    />
    <link rel="preconnect" href="https://fonts.googleapis.com" />
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
    <link
      href="https://fonts.googleapis.com/css2?family=Reenie+Beanie&display=swap"
      rel="stylesheet"
    />
    <link
      rel="stylesheet"
      href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/css/bootstrap.min.css"
      integrity="sha384-xOolHFLEh07PJGoPkLv1IbcEPTNtaed2xpHsD9ESMhqIYd0nLMwNLD69Npy4HI+N"
      crossorigin="anonymous"
    />
    <!-- CSS script -->
    <link rel="stylesheet" href="./app/./style/style.css" />
    <!-- Latest Font-Awesome CDN -->
  </head>

  <body>
    <section class="pages" id="landingPage">
      <div class="container-fluid height-All">
        <div class="row backColor">
          <div class="col">
            <h1 class="text-center mt-3 mb-3">Street ARTist</h1>
          </div>
        </div>
        <div class="row">
          <div class="col text-center">
            <img src="./img/Logo.png" alt="" />
          </div>
        </div>

        <div class="wid60 m-0 m-auto relative">
          <div class="block1 w-100">
            <h3
              class="m-0 pb-1 pt-5 d-flex justify-content-center align-items-center"
            >
              Joing as Artist
            </h3>
            <select id="artistSel" class="float-right mr-4"></select>
          </div>
        </div>
        <div class="wid60 m-0 m-auto relative">
          <div class="block2 w-100">
            <h3
              class="m-0 rotate pb-5 d-flex justify-content-center align-items-center"
            >
              Joing as Visitor
            </h3>
          </div>
        </div>
      </div>
    </section>
    <section class="pages" id="visitorHomePage">
      <div class="container-fluid bck-visitorHomePage">
        <div class="row backColor">
          <div class="col d-flex">
            <img
              class="w-25"
              id="logoVisitorHomePage"
              src="./img/Logo.png"
              alt=""
            />
            <div class="d-flex w-100 d-flex justify-content-between">
              <h1
                class="text-center m-0 d-flex justify-content-center align-items-center"
              >
                Street ARTist
              </h1>
              <div class="d-flex justify-content-center align-items-center">
                <img
                  class="align-items-center auctionBtn"
                  src="./img/Vector.png"
                  alt=""
                />
              </div>
            </div>
          </div>
        </div>
        <div class="row mt-2 d-flex">
          <div
            class="col back-stone d-flex justify-content-around align-items-center"
          >
            <h3>Looking for a, masterpiece?</h3>
            <button class="w-50 btnVisitorHomePage">Find one now!</button>
          </div>
        </div>
        <div class="row mt-5">
          <div class="col p-0">
            <div class="fatherInfinitySlider">
              <div class="infintySliderLeft"></div>
            </div>
          </div>
        </div>
        <div class="row mt-5">
          <div class="col p-0">
            <div class="fatherInfinitySlider">
              <div class="infintySliderRight"></div>
            </div>
          </div>
        </div>
        <div class="row mt-5">
          <div class="col p-0">
            <div
              id="carouselExampleControls"
              class="carousel slide"
              data-ride="carousel"
            >
              <div class="carousel-inner">
                <div class="carousel-item active">
                  <div class="row">
                    <div class="col-6 d-flex">
                      <p
                        class="m-0 d-flex justify-content-center align-items-center text-center"
                      >
                        Lorem ipsum dolor sit amet, consectetur adipisicing
                        elit. Voluptate veritatis repudiandae aliquam ipsam, eum
                        accusamus repellendus cumque.
                      </p>
                    </div>
                    <div class="col-6 carousel-inner-bgc">
                      <div class="crausel-1"></div>
                    </div>
                  </div>
                </div>
                <div class="carousel-item">
                  <div class="row">
                    <div class="col-6 carousel-inner-bgc">
                      <div class="crausel-2"></div>
                    </div>

                    <div class="col-6 d-flex">
                      <p
                        class="m-0 d-flex justify-content-center align-items-center text-center"
                      >
                        Lorem ipsum dolor sit amet, consectetur adipisicing
                        elit. Voluptate veritatis repudiandae aliquam ipsam, eum
                        accusamus repellendus cumque.
                      </p>
                    </div>
                  </div>
                </div>
                <div class="carousel-item">
                  <div class="row">
                    <div class="col-6 d-flex">
                      <p
                        class="m-0 d-flex justify-content-center align-items-center text-center"
                      >
                        Lorem ipsum dolor sit amet, consectetur adipisicing
                        elit. Voluptate veritatis repudiandae aliquam ipsam, eum
                        accusamus repellendus cumque.
                      </p>
                    </div>
                    <div class="col-6 carousel-inner-bgc">
                      <div class="crausel-3"></div>
                    </div>
                  </div>
                </div>
              </div>
              <button
                class="carousel-control-prev"
                type="button"
                data-target="#carouselExampleControls"
                data-slide="prev"
              >
                <span class="next" aria-hidden="true">
                  <i
                    class="fa-solid fa-2x fa-rotate-180 next fa-chevron-right"
                  ></i
                ></span>
                <span class="sr-only">Previous</span>
              </button>
              <button
                class="carousel-control-next"
                type="button"
                data-target="#carouselExampleControls"
                data-slide="next"
              >
                <span aria-hidden="true">
                  <i class="fa-solid fa-2x next fa-chevron-right"></i
                ></span>
                <span class="sr-only">Next</span>
              </button>
            </div>
          </div>
        </div>
      </div>
    </section>
    <section class="pages" id="visitorListingPage">
      <div class="visitorlisting">
        <div class="container-fluid bck-visitorHomePage">
          <div class="row backColor">
            <div class="col d-flex">
              <img
                id="logoVisitorListingPage"
                class="w-25"
                src="./img/Logo.png"
                alt=""
              />
              <div class="d-flex w-100 d-flex justify-content-between">
                <h1
                  class="text-center m-0 d-flex justify-content-center align-items-center"
                >
                  Street ARTist
                </h1>
                <div class="d-flex justify-content-center align-items-center">
                  <img
                    class="align-items-center auctionBtnFilter"
                    src="./img/Vector.png"
                    alt=""
                  />
                  <img class="filter" src="./img/Untitled-4.jpg" alt="" />
                </div>
              </div>
            </div>
          </div>
          <div class="row">
            <div class="col p-0">
              <div class="carts-containers-visitorhomepage"></div>
            </div>
          </div>
        </div>
      </div>
      <div id="visitorFilters">
        <div class="container-fluid filterBgc">
          <div class="row backColor">
            <div class="col d-flex">
              <img class="logo w-25" src="./img/Logo.png" alt="" />
              <div class="d-flex w-100 d-flex justify-content-between">
                <h1
                  class="text-center m-0 d-flex justify-content-center align-items-center"
                >
                  Street ARTist
                </h1>
                <div class="d-flex justify-content-center align-items-center">
                  <img
                    class="align-items-center"
                    src="./img/Vector.png"
                    alt=""
                  />
                </div>
              </div>
            </div>
          </div>
          <div class="row">
            <div class="col">
              <div
                class="d-flex justify-content-between align-items-center pt-1"
              >
                <h3 class="m-0">Filter by</h3>
                <i class="fa-solid fa-3x fa-x fa-color-cros" id="cros"></i>
              </div>
              <div class="pt-3">
                <label for="name" class="d-block pb-2">By item Title</label>
                <input
                  type="text"
                  placeholder="Label"
                  id="itemTitleVal"
                  class="filterValColors"
                  name="name"
                />
                <hr class="w-100" />
              </div>
              <div class="pt-3">
                <label for="artist" class="d-block pb-2">By Artist</label>
                <select
                  class="filterValColors filterSelect"
                  id="ArtistVal"
                  name="artist"
                >
                  <option value="">chose</option>
                </select>
                <hr class="w-100" />
              </div>
              <div class="pt-3">
                <label for="artist" class="d-block pb-2">By Price</label>
                <div class="row">
                  <div class="min col-6">
                    <label for="min">Min:</label>
                    <input
                      type="text"
                      name="min"
                      class="width-input filterValColors"
                      id="minVal"
                      placeholder="Label"
                    />
                  </div>
                  <div class="max col-6">
                    <label for="max">Max:</label>
                    <input
                      type="text"
                      name="max"
                      id="maxVal"
                      class="width-input filterValColors"
                      placeholder="Label"
                    />
                  </div>
                </div>
                <hr class="w-100" />
              </div>
              <div class="pt-3">
                <label for="artist" class="d-block pb-2">By Type</label>
                <select
                  class="filterValColors filterType"
                  id="TypeVal"
                  name="artist"
                ></select>
                <hr class="w-100" />
              </div>
            </div>
            <div class="row">
              <div class="col">
                <div class="modal" id="modalFilter">
                  <div
                    class="d-flex justify-content-center align-items-center modal-filter"
                  >
                    <i class="fa-solid fa-xmark xmark-filter"></i>
                    <p class="m-0 modalP pt-2 pb-2">
                      Please fill up the inputs!
                    </p>
                  </div>
                </div>
              </div>
            </div>
          </div>
          <img
            src="./img/Untitled-5.jpg"
            class="filter"
            id="corect-filter"
            alt=""
          />
        </div>
      </div>
      <div class="filter-ele"></div>
    </section>

    <section class="pages" id="artistHomePage">
      <div class="container-fluid bck-visitorHomePage position-relative z-ind">
        <div class="row backColor">
          <div class="col d-flex">
            <img
              id="logoArtistHomePage"
              class="w-25"
              src="./img/Logo.png"
              alt=""
            />
            <div class="d-flex w-100 d-flex justify-content-between">
              <h1
                class="text-left m-0 d-flex justify-content-center align-items-center artist"
              ></h1>
              <div class="d-flex justify-content-center align-items-center">
                <img
                  class="align-items-center nav"
                  src="./img/Vector1.png"
                  alt=""
                />
              </div>
            </div>
          </div>
        </div>
        <div class="row artistMenu m-0">
          <div class="col">
            <div class="artistAtag p-3 d-flex flex-column">
              <button class="d-block btn-artist" id="home" href="#">
                Home
              </button>
              <button class="d-block btn-artist" id="item">Item</button>
              <button class="d-block btn-artist auctionBtnMenu" href="#">
                Auction
              </button>
            </div>
          </div>
        </div>
        <div
          class="row z-ind-3 position-relative d-flex justify-content-center text-center"
        >
          <div class="col-6">
            <div class="backColorArtist mt-4 mb-4 p-4">
              <p class="m-0 text-capitalize">total items sold</p>
              <h2 id="soldItems"></h2>
            </div>
          </div>
          <div class="col-6">
            <div class="backColorArtist mt-4 mb-4 p-4">
              <p class="m-0 text-capitalize">total income</p>
              <h2 id="income"></h2>
            </div>
          </div>
        </div>
        <div class="row z-ind-3 position-relative">
          <div class="col-12">
            <div class="liveAuction mb-4 text-center">
              <p>Lorem ipsum dolor sit amet consectetur.</p>
              <h2 class="liveAuctionPrice"></h2>
              <p class="m-0">Lorem ipsum dolor</p>
            </div>
          </div>
        </div>
        <div class="row colorBraun">
          <div class="col whiteColor pb-4">
            <div>
              <p class="mt-3 income-pTag">Display my income for last</p>
              <div class="d-flex justify-content-between">
                <button class="day7 oddBtn" href="#">7 days</button>
                <button class="day14 evenBtn" href="#">14 days</button>
                <button class="day30 oddBtn" href="#">30 days</button>
              </div>
            </div>
          </div>
          <div class="col">
            <div>
              <canvas id="myChart"></canvas>
            </div>
          </div>
        </div>
      </div>
    </section>
    <section class="pages" id="artistItemsPage">
      <div class="container-fluid bck-visitorHomePage position-relative z-ind">
        <div class="row backColor">
          <div class="col d-flex">
            <img
              id="logoArtistItemsPage"
              class="w-25"
              src="./img/Logo.png"
              alt=""
            />
            <div class="d-flex w-100 d-flex justify-content-between">
              <h1
                class="text-left m-0 d-flex justify-content-center align-items-center artist-second"
              ></h1>
              <div class="d-flex justify-content-center align-items-center">
                <img
                  class="align-items-center nav-second"
                  src="./img/Vector1.png"
                  alt=""
                />
              </div>
            </div>
          </div>
        </div>
        <div class="row artistMenu-second m-0">
          <div class="col">
            <div class="artistAtag p-3 d-flex flex-column">
              <button class="btn-artist" id="homeArtistItemsPageBtn">
                Home
              </button>
              <button class="btn-artist" id="aution">Auction</button>
            </div>
          </div>
        </div>

        <div class="row z-ind-3 position-relative">
          <div class="col p-0 artist-card"></div>
        </div>
        <div class="row z-ind-3 position-relative">
          <div class="col p-0 artist-card-2"></div>
        </div>
        <div
          class="row z-ind-3 position-relative d-flex justify-content-center text-center"
        >
          <div class="col-12 white-babycolor mt-4 mb-4">
            <div class="addItem">
              <p class="m-0">+ Add new Item</p>
            </div>
          </div>
        </div>
        <div class="row">
          <div class="col">
            <div class="modal modal-artistItems">
              <div class="modal-con">
                <h4>Are you sure you want to remove this item?</h4>
                <button class="yesBtn">Yes i am!</button>
                <button class="noBtn">Leave it, it would pay</button>
              </div>
            </div>
          </div>
        </div>
      </div>
    </section>
    <section class="pages" id="artistNewItemsPages">
      <div class="container-fluid cream-color position-relative z-ind">
        <div class="row backColor">
          <div class="col d-flex">
            <div class="modal" id="modalItemArtist">
              <div
                class="d-flex justify-content-center align-items-center modal-filter"
              >
                <i class="fa-solid fa-xmark xmark-filter" id="xmarkItemArt"></i>
                <p class="m-0 modalP pt-2 pb-2">Please fill up the inputs!</p>
              </div>
            </div>
            <img
              id="logoArtistNewItemsPages"
              class="w-25"
              src="./img/Logo.png"
              alt=""
            />
            <div class="d-flex w-100 d-flex justify-content-between">
              <h1
                class="text-left m-0 d-flex justify-content-center align-items-center artist-thr"
              ></h1>
              <div class="d-flex justify-content-center align-items-center">
                <img
                  class="align-items-center nav-thr"
                  src="./img/Vector1.png"
                  alt=""
                />
              </div>
            </div>
          </div>
        </div>
        <div class="row artistMenu-thr m-0">
          <div class="col">
            <div class="artistAtag p-3 d-flex flex-column">
              <button
                class="btn-artist color-btn"
                id="homeArtistNewItemsPages"
                href="#"
              >
                Home
              </button>
              <button class="btn-artist color-btn" id="itemArtistNewItemsPages">
                Item
              </button>
              <button class="btn-artist color-btn" href="#">Auction</button>
            </div>
          </div>
        </div>
        <div class="row z-ind-3 position-relative">
          <div class="col-12">
            <div
              class="d-flex justify-content-between mt-3 align-items-center mb-3"
            >
              <h3 class="white-babycolor-color m-0">Add new Item</h3>

              <h5 class="m-0 max-height colorText">
                Is published<input class="ml-2" id="checkbox" type="checkbox" />
              </h5>
            </div>
          </div>
        </div>
        <div class="row z-ind-3 position-relative">
          <div class="col">
            <form>
              <h5 class="m-0 colorText">Title</h5>
              <input type="text" id="title" class="inputColors w-100 mb-3" />
              <h5 class="m-0 colorText">Description</h5>
              <textarea
                class="inputColors w-100 mb-3"
                id="description"
                cols="15"
                rows="5"
              ></textarea>
            </form>
            <div class="row mb-3">
              <div class="col-6">
                <div>
                  <form>
                    <h5 class="m-0 colorText">Type</h5>
                    <select id="type" class="inputColors w-100"></select>
                  </form>
                </div>
              </div>
              <div class="col-6">
                <div>
                  <form>
                    <h5 class="m-0 colorText">Price</h5>
                    <input type="text" id="price" class="inputColors w-100" />
                  </form>
                </div>
              </div>
            </div>
            <form>
              <h5 class="m-0 colorText">Image URL</h5>
              <input type="text" id="imageUrl" class="inputColors w-100 mb-1" />
            </form>
            <p class="w-100 text-center mb-1 colorText">Or</p>
            <div class="position-relative">
              <i class="fa-regular fa-2x fa-trash-can trash" id="trashBag"></i>
              <div class="takePhoto mb-4 text-center" id="photoSetUp">
                <i class="fa-solid fa-camera-retro fa-4x iColor"></i>
                <p class="m-0 iColor" id="ptag">Take a snapshot</p>
                <img class="w-100" id="takePhotoFromCanvas" />
              </div>
            </div>
          </div>
        </div>
        <div class="row pb-3">
          <div class="col-6">
            <div>
              <button
                class="text-capitalize additemBtn w-100 p-1"
                id="addNewItemsBtn"
              >
                Add new items
              </button>
            </div>
          </div>
          <div class="col-6">
            <div>
              <button class="cancelBtn w-100 p-1">Canel</button>
            </div>
          </div>
        </div>
      </div>
    </section>
    <section class="pages" id="artistCapureImagePopup">
      <div class="container-fluid cream-color height-All">
        <div class="row">
          <div class="col">
            <div
              class="d-flex justify-content-center align-items-center flex-column mt-5"
            >
              <video autoplay id="videoStream" width="426" height="160"></video>
              <canvas id="liveCapture"></canvas>
              <i
                id="capureBtn"
                class="fa-solid fa-camera-retro position-relative fa-4x iColor"
              ></i>
            </div>
          </div>
        </div>
      </div>
    </section>
    <section class="pages" id="auction">
      <div
        class="container-fluid height-All bck-visitorHomePage position-relative z-ind"
      >
        <div class="row backColor">
          <div class="col d-flex">
            <img id="logoAuction" class="w-25" src="./img/Logo.png" alt="" />
            <div class="d-flex w-100 d-flex justify-content-between">
              <h1
                class="text-left m-0 d-flex justify-content-center align-items-center artist-thr"
              >
                Auction
              </h1>
            </div>
            <div class="d-flex justify-content-center align-items-center">
              <img
                class="align-items-center auctionBtn"
                src="./img/Vector.png"
                alt=""
              />
            </div>
          </div>
        </div>
        <div class="row z-ind-3 position-relative">
          <div class="col-12 putEle">
            <div class="w-100 mt-3 mb-3 cream-color">
              <p class="text-capitalize m-0 pt-2 pb-2 pl-3 autionPtag">
                Live auction
              </p>
            </div>
          </div>
        </div>
        <i class="fa-solid mb-3 fa-2x fa-stopwatch"></i>
        <p id="timer" class="d-inline"></p>
        <div class="row mb-3 justify-content-around">
          <div class="col-5 cream-color">
            <div class="text-center">
              <p class="mb-0 startingAndBettingPtag pt-2 pb-2">
                Starting Price
              </p>
            </div>
          </div>
          <div class="col-5 cream-color">
            <div class="text-center">
              <p class="mb-0 startingAndBettingPtag pt-2 pb-2">Last Bet</p>
            </div>
          </div>
        </div>
        <div class="row justify-content-around">
          <div class="col-5 p-0">
            <div class="d-flex justify-content-between">
              <input class="auctionInput" step="10" type="number" />
              <button id="bitBtn">Bet</button>
            </div>
          </div>
          <div class="col-5 p-0">
            <div class="d-flex justify-content-between">
              <p class="uterTag m-0">User1</p>
              <p class="uterTag m-0">User2</p>
            </div>
            <div class="d-flex justify-content-between">
              <ul class="m-0 p-0 user1"></ul>
              <ul class="m-0 p-0 user2"></ul>
            </div>
          </div>
        </div>
        <div class="row">
          <div class="col">
            <div class="modal congratsModal">
              <img
                class="position-absolute confeti"
                src="./img/dsfdffdsfsdfdsfdfs.png"
                alt=""
              />
              <p class="congtas">CONGRATS</p>
            </div>
          </div>
        </div>
      </div>
    </section>

    <!-- jQuery library -->
    <script
      src="https://cdn.jsdelivr.net/npm/jquery@3.5.1/dist/jquery.slim.min.js"
      integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
      crossorigin="anonymous"
    ></script>

    <!-- Latest Compiled Bootstrap 4.6 JavaScript -->
    <script
      src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js"
      integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN"
      crossorigin="anonymous"
    ></script>
    <script
      src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/js/bootstrap.min.js"
      integrity="sha384-+sLIOodYLS7CIrQpBjl+C7nPvqq+FbNUBDunl/OZv93DB7Ln/533i8e/mZXLi/P+"
      crossorigin="anonymous"
    ></script>
    <script src="https://cdn.jsdelivr.net/npm/chart.js"></script>

    <script type="module" src="./app/main.js"></script>
  </body>
</html>