blob: efe0d365e1890f33a63c8a891f8502be3baa1700 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!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">
<title>Firebase ECommerce Solution</title>
<link rel="stylesheet" href="../shared/css/dashboard.css">
</head>
<body>
<div id="snackbar">Some text some message..</div>
<h2 class="title">Firebase ECommerce</h2>
<button id="cart">View Cart</button>
<button id="signout">Signout</button>
<div id="loader"></div>
<script src="../shared/jquery.js"></script>
<script src="https://www.gstatic.com/firebasejs/6.1.0/firebase.js"></script>
<script src="../shared/firebaseConfig.js"></script>
<script src="../shared/Dashboard.js"></script>
</body>
</html>
|