-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (64 loc) · 3.19 KB
/
index.html
File metadata and controls
81 lines (64 loc) · 3.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link href="styles.css" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Cutive+Mono&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<link href="styles.css" rel="stylesheet">
</head>
<body>
<div class="container-fluid">
<div class="row bg-purple">
<div class="col header">
<nav>
<h1>CryptoCat</h1>
<img src="assets/neko.png">
</nav>
</div>
</div>
<div class="row bg-purple px-3">
<div class="col-auto">
<button type="button" class="btn btn-outline-light" onclick="showCurrencies()">Home</button>
<button type="button" class="btn btn-outline-light" onclick="fetchCoinPrice()" id="liveReportsButton">Live Reports</button>
<button type="button" class="btn btn-outline-light" onclick="about()">About</button>
</div>
<div class="col-auto search">
<input type="text" id="searchInput" placeholder="Search..." />
<button type="button" class="btn btn-outline-light" onclick="search()">Search</button>
</div>
</div>
<div class="row bg-purple">
<div class="col" id="content"></div>
</div>
<div class="modal fade" id="coinModal" tabindex="-1" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content bg-purple">
<div class="modal-header">
<h5 class="modal-title">Live reports requires up to 5 coins</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body" class="list-group">
<p>Please choose which coin to replace with <strong class='extra-coin'></strong></p>
</div>
<ul id='modalCoinList' class="bg-purple"></ul>
<div class="modal-footer">
<button type="button" class="btn btn-dark gradient-bg" data-bs-dismiss="modal">Dismiss <strong
class='extra-coin'></strong></button>
</div>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW"
crossorigin="anonymous"></script>
<script src="https://canvasjs.com/assets/script/jquery-1.11.1.min.js"></script>
<script src="https://canvasjs.com/assets/script/jquery.canvasjs.min.js"></script>
</body>
</html>