-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
105 lines (95 loc) · 4.89 KB
/
index.html
File metadata and controls
105 lines (95 loc) · 4.89 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!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="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<!-- CSS -->
<link rel="stylesheet" href="./src/main.css">
<title>Crypto Search</title>
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg navbar-light bg-light container">
<a class="navbar-brand">Crypto Search</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="navbar-collapse collapse w-100 order-3 dual-collapse2">
<ul class="navbar-nav ml-auto">
<li class="nav-item signup" style="display: none">
<a class="nav-link" href="signup.html">Sign Up</a>
</li>
<li class="nav-item login" style="display: none">
<a class="nav-link" href="dashboard.html">Login</a>
</li>
<li class="nav-item dashboard" style="display: none">
<a class="nav-link" href="dashboard.html">Dashboard</a>
</li>
<li class="nav-item logout" style="display: none">
<a class="nav-link" href="#">Logout</a>
</li>
</ul>
</div>
</nav>
</header>
<!-- main container -->
<div class="container">
<div class="jumbotron-container">
<div class="jumbotron">
<h1 class="display-4">Welcome to Crypto Search!</h1>
<p class="lead">This is a simple application to track coins</p>
<hr class="my-4">
<a class="btn btn-primary btn-lg" href="#" role="button">See documentation on Github</a>
</div>
</div>
<div id="chart-line"></div>
<div class="crypto-dashboard-home-page">
<h3>Top Coins <span class="current-time"></span></h3>
<div class="top-coints">
<table class="table table-striped">
<thead>
<tr>
<th scope="col">Coin</th>
<th scope="col">Price $</th>
<th scope="col">Day Open $</th>
<th scope="col">Day Open Volume</th>
<th scope="col">High</th>
<th scope="col">Available Supply</th>
<th scope="col">Max Supply</th>
</tr>
</thead>
<tbody class="coin-data">
</tbody>
</table>
</div>
</div>
<!-- end of main cointainer -->
<div class="terms">
<p>
Crypro Search is a project developed for author's personal portfolio. Aplication is for tracking crypto coins without any adds or commercials. Crypto Search collects personal data (name, email address and hashed password over Firebase). I will not sell
the collected information.
</p>
</div>
</div>
<footer>
<div class="container">
<p><span class="time"></span> Tom Santek</p>
</div>
</footer>
<!-- Optional JavaScript -->
<script src="https://cdn.jsdelivr.net/npm/apexcharts@latest"></script>
<!-- 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://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<script src="https://canvasjs.com/assets/script/canvasjs.min.js"></script>
<!-- FIREBASE -->
<script defer src="https://www.gstatic.com/firebasejs/6.0.2/firebase-app.js"></script>
<script defer src="https://www.gstatic.com/firebasejs/6.0.2/firebase-auth.js"></script>
<script defer src="https://www.gstatic.com/firebasejs/6.0.2/firebase-firestore.js"></script>
<script src="./src/index.js"></script>
</body>
</html>