-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
81 lines (76 loc) · 2.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/png" href="logs.png">
<link rel="stylesheet" href="style.css" />
<title>Output Organizer</title>
</head>
<body>
<header class="pages-container">
<ul class="pages">
<li
class="page active"
data-page-idx="0"
onclick="changePageHandler(event)"
>
1
<button class="delete-page-btn hidden"><i class="bi bi-x"></i></button>
</li>
<li class="page add-new-page-btn" onclick="addNewPageHandler(event)">
<i class="bi bi-plus"></i>
</li>
</ul>
</header>
<main class="main-container">
<div class="main-container-top">
<button id="clearAllBtn" class="pink-btn">Clear All</button>
<button id="timeZonesBtn" class="light-faded-green-btn">The Time</button>
<div id="timeZonesTable" class="time-zones-table hidden">
<table>
<tr><td>US-West (GMT-7)</td><td id="time-US-West"></td></tr>
<tr><td>Denver (GMT-6)</td><td id="time-Denver"></td></tr>
<tr><td>UTC (GMT)</td><td id="time-UTC"></td></tr>
<tr><td>Amsterdam (GMT+1)</td><td id="time-Amsterdam"></td></tr>
<tr><td>India (GMT+5:30)</td><td id="time-India"></td></tr>
<tr><td>Singapore (GMT+8)</td><td id="time-Singapore"></td></tr>
<tr><td>Korea (GMT+9)</td><td id="time-Korea"></td></tr>
</table>
</div>
<form
action=""
class="text-block-form"
onsubmit="addTextBlockHandler(event)"
>
<textarea
class="text-block-inp"
placeholder="
Use the + to create multiple pages.
Paste your output here, then press submit.
You can manipulate the order of the output by dragging and dropping or using the arrows.
When copied, the [code]<pre> tags will automatically be added to each separate block."
required
></textarea>
<button class="text-block-submit-btn">Submit</button>
</form>
</div>
<div class="main-container-bottom">
<div class="indexes-wrapper">
<h3 class="indexes-heading">INDEX</h3>
<ul class="indexes-list">
<!-- Index items will be dynamically added here -->
</ul>
</div>
<div class="text-blocks-wrapper">
<h3 class="text-blocks-heading">OUTPUT</h3>
<ul class="text-blocks-list">
<!-- Text block items will be dynamically added here -->
</ul>
</div>
</div>
</main>
<script src="main.js"></script>
</body>
</html>