-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (73 loc) · 1.93 KB
/
index.html
File metadata and controls
88 lines (73 loc) · 1.93 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Operator Database</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<!-- ============================= -->
<!-- Header Section -->
<!-- ============================= -->
<div class="header">
<h1>Operator Database</h1>
<div class="version">v1.0.0</div>
</div>
<!-- ============================= -->
<!-- Navigation Tabs -->
<!-- ============================= -->
<div class="tabs">
<button class="tab-button active" data-tab="main">Main List</button>
<button class="tab-button" data-tab="teams">Teams</button>
</div>
<!-- ============================= -->
<!-- MAIN TAB -->
<!-- ============================= -->
<div id="main-tab">
<div class="controls">
<div class="search-wrapper">
<input
type="text"
id="search-input"
placeholder="Search operators..."
/>
<button id="clear-search">×</button>
</div>
<div id="alphabet-filter"></div>
</div>
<div id="operator-list"></div>
</div>
<!-- ============================= -->
<!-- TEAMS TAB -->
<!-- ============================= -->
<div id="teams-tab" class="hidden">
<div id="teams-container"></div>
</div>
<!-- ============================= -->
<!-- Back To Top Button -->
<!-- ============================= -->
<button id="back-to-top">↑</button>
<!-- ============================= -->
<!-- Operator Selection Modal -->
<!-- ============================= -->
<div id="operator-modal" class="modal hidden">
<div class="modal-content">
<div class="modal-header">
<h3>Select Operator</h3>
<button id="close-modal">×</button>
</div>
<input
type="text"
id="modal-search"
placeholder="Search operator..."
/>
<div id="modal-operator-list"></div>
</div>
</div>
<!-- ============================= -->
<!-- App -->
<!-- ============================= -->
<script src="js/app.js"></script>
</body>
</body>
</html>