-
Notifications
You must be signed in to change notification settings - Fork 156
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (62 loc) · 2.49 KB
/
index.html
File metadata and controls
67 lines (62 loc) · 2.49 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
<!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 href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-KyZXEAg3QhqLMpG8r+8fhAXLRk2vvoC2f3B09zVXn8CA5QIVfZOJ3BCsw2P0p/We" crossorigin="anonymous">
<link rel="shortcut icon" href="https://bcw.blob.core.windows.net/public/img/9977764104160066" type="image/x-icon">
<link rel="stylesheet" href="assets/style/main.css">
<title>music-is-fun</title>
</head>
<body>
<header>
<nav class="navbar navbar-dark navbar-expand bg-dark text-light no-select align-items-center">
<a class="navbar-brand ms-3 d-flex align-items-center" href="#">
<img src="https://codeworks.blob.core.windows.net/public/assets/img/cw-mark.png" height="45" alt=""
loading="lazy">
<span class="ms-2">Music is Fun</span>
</a>
</nav>
</header>
<main class="container-fluid">
<section class="row my-3">
<div class="col-lg-6 m-auto">
<form onsubmit="app.songsController.search(event)" class="d-flex align-items-center bg-dark elevation-2 rounded p-1 shadow">
<input type="text" class="form-control" name="query" placeholder="Search For Music" />
<button class="btn btn-dark" type="submit">
Search
</button>
</form>
</div>
</section>
<section class="row">
<div class="col-lg-6">
<h3 class="text-center">Search Results</h3>
<div id="songs" class="col-12 m-0">
<!-- api songs -->
</div>
</div>
<div class="col-lg-6">
<h3 class="text-center">Playlist</h3>
<div class="col-12 m-0" id="playlist">
<!-- template for playlist -->
</div>
</div>
</section>
</main>
<footer class="container-fluid bg-dark text-light">
<div class="row text-center">
<div class="col">
<p><small>Made with 💖 by Codeworks</small></p>
</div>
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.19.0/axios.js"
integrity="sha256-XmdRbTre/3RulhYk/cOBUMpYlaAp2Rpo/s556u0OIKk=" crossorigin="anonymous"></script>
<script src=" https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.js"
integrity="sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU=" crossorigin="anonymous"></script>
<script src="app/main.js" type="module"></script>
</body>
</html>