-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanager.html
More file actions
155 lines (137 loc) · 3.47 KB
/
Copy pathmanager.html
File metadata and controls
155 lines (137 loc) · 3.47 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
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>Proxy Manager - Pip-Boy Style</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital@0;1&display=swap" rel="stylesheet">
<style>
:root {
--main: 0, 255, 0;
--alt: 0, 120, 0;
--black: #000000;
}
* {
box-sizing: border-box;
scrollbar-width: thin;
scrollbar-color: rgb(var(--alt)) transparent;
}
*::-webkit-scrollbar { width: 8px; }
*::-webkit-scrollbar-track { background: transparent; }
*::-webkit-scrollbar-thumb { background-color: rgb(var(--alt)); border-radius: 0; border: 2px solid transparent; }
body {
background: black;
color: rgb(var(--main));
font-family: 'Roboto Mono', monospace;
margin: 0;
font-size: 15px;
line-height: 1.5em;
overflow-x: hidden;
}
.page-wrapper {
max-width: 900px;
margin: 0 auto;
padding: 20px;
}
/* ASCII Art */
pre.goat {
font-size: 22px;
line-height: 1.1;
letter-spacing: 1px;
text-align: center;
margin-bottom: 20px;
}
/* Main block */
.main {
padding: 20px;
border: 2px solid rgb(var(--main));
border-radius: 6px;
background: rgba(0,10,0,0.6);
}
/* Headers */
h1, h3 { color: rgb(var(--main)); text-shadow: 0 0 5px rgb(var(--main)); }
/* Forms & Buttons */
input, button { background: black; color: rgb(var(--main)); border: 1px solid rgb(var(--main)); padding: 3px 6px; font-family: 'Roboto Mono', monospace; }
button:hover { background: rgba(var(--alt), 0.3); cursor: pointer; }
/* Table */
table { border-collapse: collapse; width: 100%; margin-top: 20px; }
td, th { border: 1px solid rgb(var(--main)); padding: 5px 10px; text-align: left; }
/* Logs */
.logs-container {
border: 3px solid rgb(var(--main));
border-radius: 10px;
background: rgba(0,50,0,0.85);
padding: 15px;
height: 300px;
overflow-y: scroll;
white-space: pre-wrap;
box-shadow: 0 0 20px rgb(var(--main)) inset, 0 0 10px rgb(var(--alt));
margin-top: 20px;
position: relative;
}
.logs-container::before {
content: "PIP-BOY LOGS";
position: absolute;
top: -20px;
left: 10px;
font-weight: bold;
color: rgb(var(--main));
text-shadow: 0 0 10px rgb(var(--main));
font-size: 14px;
}
/* CRT glow effect */
@keyframes crt-glow {
0% { opacity: 0.15; }
50% { opacity: 0.2; }
100% { opacity: 0.15; }
}
body::before {
content: '';
position: fixed;
width: 100%; height: 100%;
background: radial-gradient(circle at center, rgba(var(--main),0.1) 0%, rgba(var(--alt),0.2) 70%, rgba(var(--alt),0) 100%);
pointer-events: none;
animation: crt-glow 60s infinite;
z-index: 1;
}
/* Responsive */
@media (max-width: 900px) {
.main { width: 100%; }
}
</style>
</head>
<body>
<div class="page-wrapper">
<pre class="goat">
___
.-" "-.
/ \
| .--. .-|
| (o_o )(o_)
| '--' |
\ /
'-.___.-'
-----------------
WELL WELL !
</pre>
<h1>Proxy Manager</h1>
<div class="main">
<h3>Ajouter un utilisateur</h3>
<form method="POST" action="/manager/add">
Nom d'utilisateur: <input name="username" required><br><br>
Mot de passe: <input name="password" type="password" required><br><br>
Admin: <input type="checkbox" name="admin" value="1"><br><br>
<button type="submit">Ajouter</button>
</form>
<h3>Utilisateurs existants</h3>
<table>
<tr><th>Utilisateur</th><th>Supprimer</th><th>Admin</th></tr>
{{USER_ROWS}}
</table>
<h3>Logs de l'application</h3>
<div class="logs-container">
{{LOGS}}
</div>
</div>
</div>
</body>
</html>