-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
138 lines (138 loc) · 4.22 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
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Zymono - Dashboard</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css">
<link rel="stylesheet" href="./style.css">
<script src="https://www.gstatic.com/firebasejs/10.3.0/firebase-app-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/10.3.0/firebase-auth-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/10.3.0/firebase-firestore-compat.js"></script>
<link rel="icon" href="/images/fav.png">
<script src="/backend/v1/index.js"></script>
</head>
<body>
<!-- partial:index.partial.html -->
<!-- <header class="header">
<div class="header-content responsive-wrapper">
<div class="header-logo">
<a href="#">
<div>
<img src="https://assets.codepen.io/285131/untitled-ui-icon.svg" />
</div>
<img src="https://assets.codepen.io/285131/untitled-ui.svg" />
</a>
</div>
<div class="header-navigation">
<nav class="header-navigation-links">
<a href="#"> Home </a>
<a href="#"> Dashboard </a>
<a href="#"> Projects </a>
<a href="#"> Tasks </a>
<a href="#"> Reporting </a>
<a href="#"> Users </a>
</nav>
<div class="header-navigation-actions">
<a href="#" class="button">
<i class="ph-lightning-bold"></i>
<span>Upgrade now</span>
</a>
<a href="#" class="icon-button">
<i class="ph-gear-bold"></i>
</a>
<a href="#" class="icon-button">
<i class="ph-bell-bold"></i>
</a>
<a href="#" class="avatar">
<img src="https://assets.codepen.io/285131/hat-man.png" alt="" />
</a>
</div>
</div>
<a href="#" class="button">
<i class="ph-list-bold"></i>
<span>Menu</span>
</a>
</div>
</header> -->
<main class="main">
<div class="responsive-wrapper">
<div class="main-header">
<h1 id="greeting"></h1>
<!-- <div class="search">
<input type="text" placeholder="Search" />
<button type="submit">
<i class="ph-magnifying-glass-bold"></i>
</button>
</div> -->
</div>
<div class="horizontal-tabs">
<a href="/dashboard/profile">My details</a>
<a href="/dashboard/settings" id="settings">Settings</a>
<a href="/dashboard/" class="active">Report</a>
<a href="/dashboard/team">Team</a>
<a href="/dashboard/api">API</a>
</div>
<div class="content-header">
<div class="content-header-intro">
<h2>Your Reports</h2>
<!-- <p>Supercharge your workflow and connect the tool you use every day.</p> -->
<p id="flagged"></p>
</div>
<div class="content-header-actions">
<a href="#" class="button">
<i class="ph-faders-bold"></i>
<span>Filters</span>
</a>
<a href="#" class="button" id="invite">
<i class="ph-plus-bold"></i>
<span>Invite Employees</span>
</a>
</div>
</div>
<div class="content">
<!-- <div class="content-panel">
<div class="vertical-tabs">
<a href="#" class="active">View all</a>
<a href="#">Developer tools</a>
<a href="#">Communication</a>
<a href="#">Productivity</a>
<a href="#">Browser tools</a>
<a href="#">Marketplace</a>
</div>
</div> -->
<div class="content-main">
<div class="card-grid" id="out">
<p id="noReports" style="display: none;">You have no incoming reports.</p>
<!-- <article class="card">
<div class="card-header">
<div>
<span><img src="https://assets.codepen.io/285131/zeplin.svg" /></span>
<h3>Zeplin</h3>
</div>
<label class="toggle">
<input type="checkbox" checked>
<span></span>
</label>
</div>
<div class="card-body">
<p>Collaboration between designers and developers.</p>
</div>
<div class="card-footer">
<a href="#">View integration</a>
</div>
</article> -->
</div>
</div>
</div>
</div>
</main>
<!-- partial -->
<script src='https://unpkg.com/phosphor-icons'></script><script src="./script.js"></script>
<div id="image" class="popup" style="display: none;">
<div class="popup-content">
<image alt="User provided image" src="#" id="imageSrc">
<button onclick="this.parentElement.parentElement.style.display='none'" class="close">Close</button>
</div>
</div>
</body>
</html>