-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
56 lines (53 loc) · 1.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Dashboard</title>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.6.3/css/all.css"
integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/"
crossorigin="anonymous"
/>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Raleway:wght@300&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/index.css" />
</head>
<body>
<nav class="navbar">
<div class="nav-col-logo">
<a href="#"><i class="fa fa-book"></i> GDocs</a>
</div>
<div class="nav-col-input">
<form id="searchForm">
<input type="search" placeholder="Search" id="search" />
</form>
</div>
<div class="nav-col-img">
<a href="#"><i class="fa fa-user"></i></a>
</div>
</nav>
<div class="documents">
<div class="section group">
<div class="col span_1_of_3"><h4>Today</h4></div>
<div class="col span_1_of_3"><h4>Owned by anyone</h4></div>
<div class="col span_1_of_3"><h4>Last opened</h4></div>
</div>
<div id="documents"></div>
</div>
<div class="creat-new-doc">
<button class="btn-color" type="button" id="createNewDoc">+</button>
</div>
<script src="https://www.gstatic.com/firebasejs/7.15.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.15.0/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.15.0/firebase-firestore.js"></script>
<script src="js/init-firebase.js"></script>
<script src="js/auth.js"></script>
<script src="js/db.js"></script>
</body>
</html>