-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (89 loc) · 5.14 KB
/
index.html
File metadata and controls
97 lines (89 loc) · 5.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Browser123</title>
<script src="https://cdn.jsdelivr.net/npm/sortablejs@1.15.0/Sortable.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" crossorigin="anonymous"/>
<link rel="stylesheet" href="style.css">
<script src="JS/scramjet.all.js"></script>
<script src="B/index.js"></script>
<script src="prxxry.config.js"></script>
<script src="script.js"></script>
</head>
<body>
<div id="app"></div>
<!-- WISP Settings Modal -->
<div class="wisp-settings-modal modal-overlay hidden" id="wisp-settings-modal">
<div class="modal-container wisp-settings-container">
<div class="modal-header">
<h3>WISP Settings</h3>
<button class="modal-close-btn" id="close-wisp-modal">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor">
<path d="M18 6 6 18M6 6l12 12"/>
</svg>
</button>
</div>
<div class="modal-body">
<div class="wisp-section">
<h4>Current WISP URL</h4>
<div class="current-wisp-display">
<code class="wisp-url-display" id="current-wisp-url"></code>
</div>
</div>
<div class="wisp-section">
<h4>Predefined WISP URLs</h4>
<div class="predefined-wisps">
<div class="wisp-option" data-url="wss://register.goip.it/wisp/">
<div class="wisp-option-header">
<span class="wisp-option-name">Space's Wisp</span>
<button class="wisp-option-btn" data-action="select-wisp">Select</button>
</div>
<div class="wisp-option-url">wss://register.goip.it/wisp/</div>
<div class="wisp-option-description">Space's Wisp</div>
</div>
<div class="wisp-option" data-url="wss://dash.goip.de/wisp/">
<div class="wisp-option-header">
<span class="wisp-option-name">DaydreamX's Wisp</span>
<button class="wisp-option-btn" data-action="select-wisp">Select</button>
</div>
<div class="wisp-option-url">wss://dash.goip.de/wisp/</div>
<div class="wisp-option-description">DaydreamX's wisp</div>
</div>
<div class="wisp-option" data-url="wss://wisp.rhw.one/wisp/">
<div class="wisp-option-header">
<span class="wisp-option-name">Rhw's wisp</span>
<button class="wisp-option-btn" data-action="select-wisp">Select</button>
</div>
<div class="wisp-option-url">wss://wisp.rhw.one/wisp/</div>
<div class="wisp-option-description">Rhw's WISP</div>
</div>
</div>
</div>
<div class="wisp-section">
<h4>Custom WISP URL</h4>
<div class="custom-wisp-input">
<input type="url"
id="custom-wisp-url"
placeholder="wss://your-wisp-server.com/wisp/"
class="wisp-url-input">
<button class="wisp-test-btn" id="test-wisp-btn">Test Connection</button>
<button class="wisp-save-btn" id="save-custom-wisp-btn">Save Custom</button>
</div>
</div>
<div class="wisp-section">
<div class="wisp-status" id="wisp-status">
<span class="status-indicator" id="wisp-status-indicator"></span>
<span class="status-text" id="wisp-status-text">Ready to configure</span>
</div>
</div>
</div>
<div class="modal-footer">
<button class="btn btn-secondary" id="close-wisp-modal-footer">Close</button>
<button class="btn btn-primary" id="apply-wisp-btn" disabled>Apply Changes</button>
</div>
</div>
</div>
</body>
</html>