-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (47 loc) · 1.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>QDN Editor - v0.5.0</title>
<link rel="icon" type="image/png" href="editor-favicon.png">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>QDN Editor - v0.5.0</h1>
</header>
<main>
<section id="info-page">
<div id="info-details">
<p>Welcome to the QDN Editor! This app is a work in progress.<br>
Sign in to view and edit your published QDN content.</p>
<button id="login-button">Sign in</button>
</div>
</section>
<section id="content-page" style="display: none;">
<p id="account-details"></p>
<div id="items-per-page" style="margin:10px 0;">
Show
<select id="items-per-page-dropdown">
<option value="10" selected>10</option>
<option value="25">25</option>
<option value="100">100</option>
</select>
results per page
</div>
<div id="filter-options" style="margin:10px 0;">
Filter by service:
<select id="service-filter-dropdown">
<!-- Will be populated dynamically with "ALL" + services -->
</select>
</div>
<div id="content-summary"></div>
<div id="pagination-top" class="pagination-controls"></div>
<div id="content-details"></div>
<div id="pagination-bottom" class="pagination-controls"></div>
</section>
</main>
<script src="script.js"></script>
</body>
</html>