-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
125 lines (121 loc) · 3.99 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="darkreader-lock">
<title>T-NAU</title>
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; frame-src *; img-src 'self' data: http: https:; script-src 'self' 'unsafe-inline'; style-src 'self' 'unsafe-inline';">
<link rel="icon" href="assets/FavIcon.ico">
<link rel="stylesheet" href="assets/css/styles.min.css">
<link rel="stylesheet" href="assets/fontawesome/css/all.min.css">
<style>
#loader {
position: fixed;
inset: 0;
background: var(--bg-1, #0a0a0a);
display: grid;
place-items: center;
z-index: 9999;
}
.spinner {
width: 50px;
height: 50px;
border: 3px solid var(--bg-1, #0a0a0a);
border-left-color: var(--text, #fff);
border-radius: 50%;
animation: s 1s linear infinite;
}
@keyframes s { to { rotate: 360deg } }
</style>
</head>
<body>
<div id="loader">
<div class="spinner"></div>
</div>
<main class="main">
<h1>T-NAU</h1>
<div class="search-container">
<input type="text" id="urlInput" placeholder="Enter URL...">
<i class="fas fa-search"></i>
</div>
</main>
<nav>
<button class="ovl-button left" data-overlay-target="ovl-games">
<i class="fas fa-chevron-right"></i>
</button>
<button class="ovl-button right" data-overlay-target="ovl-utils">
<i class="fas fa-chevron-left"></i>
</button>
<button class="ovl-button top" data-overlay-target="ovl-config">
<i class="fas fa-chevron-down"></i>
</button>
</nav>
<template id="search-template">
<div class="search-container">
<input type="text" class="search-container__input" placeholder="Search...">
<i class="fas fa-search"></i>
</div>
</template>
<aside class="ovl-games"></aside>
<aside class="ovl-utils"></aside>
<aside class="ovl-config">
<div class="config-options">
<div class="section">
<h3>Appearance</h3>
<div class="option">
<label for="theme">Theme</label>
<select id="theme">
<option value="system">System</option>
<option value="dark">Dark</option>
<option value="light">Light</option>
<option value="highcontrast">High Contrast</option>
</select>
</div>
<div class="option">
<label for="animations">Enable Animations</label>
<input type="checkbox" id="animations" checked>
</div>
<div class="option">
<label for="customAccent">Accent Color</label>
<input type="color" id="customAccent">
</div>
</div>
<div class="section">
<h3>Privacy</h3>
<div class="option">
<label for="proxy">Use Proxy?</label>
<input type="checkbox" id="proxy">
</div>
<div class="option full-width">
<label for="proxyurl">Proxy URL</label>
<input type="text" id="proxyurl" placeholder="https://proxy.example.com/service/">
</div>
</div>
<div class="section">
<h3>Notifications</h3>
<div class="option">
<label for="notifications">Show notifications</label>
<input type="checkbox" id="notifications" checked>
</div>
<div class="option">
<label for="notifSound">Notification sound</label>
<input type="checkbox" id="notifSound">
</div>
</div>
<div class="section">
<h3>Advanced</h3>
<div class="option">
<label for="experimental">Experimental features</label>
<input type="checkbox" id="experimental">
</div>
<div class="option center">
<button id="clearData" class="reset-button">Clear All Data</button>
</div>
</div>
</div>
</aside>
<script>addEventListener('load',_=>setTimeout(_=>loader.remove(),500))</script>
<script defer src="assets/js/main.js"></script>
</body>
</html>