-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
62 lines (57 loc) · 2.82 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://www.jacklmoore.com/colorbox/example1/colorbox.css">
<link rel="stylesheet" href="css/style.css" type="text/css">
<link rel="shortcut icon" type="image/x-icon" href="https://img.icons8.com/wired/64/000000/rock-music.png" />
<title>Live Band</title>
</head>
<body>
<header>
<div class="brand-header">
<img class="liveBandIcon" src="https://img.icons8.com/wired/64/000000/rock-music.png">
<h1>
Live Band!
</h1>
</div>
<div class="searchBarContainer">
<input type="text" id="artists" class="" value="" name="band" placeholder="Search for a band here" autofocus>
<!--select name="filterBand" id="filterBand" class="form-select">
<option value="all" >All</option>
<option value="upcoming" selected>Upcoming</option>
<option value="past">Previous</option>
</!--select-->
</div>
</header>
<main class="container">
<div id="artistsContent" class="justify-content-around align-items-center"></div>
<div id="errorMsg" class="error-msg"></div>
<table class="table">
<thead id="tableHeader" class="tableHeader hide"></thead>
<!--tr id="headerRow" class="pacifico">
<th class="tableHeaders tNumber ">#</th>
<th class="tableHeaders tCity">City - Country</th>
<th class="tableHeaders tVenue">Venue</th>
<th class="tableHeaders tDateTime">Date & Time</th>
<th class="tableHeaders tTicket">Tickets</th>
</tr-->
</thead>
<tbody id="bandVenueList">
</tbody>
</table>
</main>
<footer>
</footer>
<script src="https://code.jquery.com/jquery-3.4.1.js"
integrity="sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/2.4.1/lodash.min.js"></script>
<script src="https://www.jacklmoore.com/colorbox/jquery.colorbox.js"></script>
<script src="https://cdn.jsdelivr.net/npm/handlebars@latest/dist/handlebars.js"></script>
<!--script type="text/javascript" src="js/bit_app.js"></script-->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js" integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p" crossorigin="anonymous"></script>
<script src="./js/app.js"></script>
</body>
</html>