Files
less_shitty_proxyjs/client.html

30 lines
1.3 KiB
HTML
Raw Permalink Normal View History

2025-07-16 20:25:01 +02:00
<!DOCTYPE html>
<html>
<head>
<title>less shitty proxyjs</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.7/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-LN+7fdVzj6u52u30Kp6M/trliBMCMKTyK833zpbD+pXdCLuTusPj697FH4R/5mcr" crossorigin="anonymous" />
<link href="style.css" rel="stylesheet" />
</head>
<body>
<div class="container">
<h1>client.html</h1>
<p><b>Server-Identity:</b> {{identity}}</p>
<p><b>Request-Serial:</b> {{serial}}</p>
<p><b>WS status:</b> <span id="wsStatus">Disconnected</span></p>
<button id="reconnectButton">Connect</button>
<div id="logView"></div>
<form id="sendForm">
<label>Text to send: <input type="text" required /></label>
<button type="submit">Send</button>
</form>
</div>
<script src="https://code.jquery.com/jquery-3.7.1.min.js" integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.7/dist/js/bootstrap.bundle.min.js" integrity="sha384-ndDqU0Gzau9qJ1lfW4pNLlhNTkCfHzAVBReH9diLvGRem5+R9g2FzA8ZGN954O5Q" crossorigin="anonymous"></script>
<script src="script.js"></script>
</body>
</html>