mirror of
https://github.com/PurpleI2P/i2pd-tools
synced 2025-01-12 07:48:02 +00:00
15 lines
517 B
HTML
15 lines
517 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title> irc client with WebSOCKS </title>
|
|
<script src="websocks.js" type="text/javascript"></script>
|
|
<link rel="stylesheet" href="style.css"></link>
|
|
</head>
|
|
<body>
|
|
<label for="ws-server">WebSOCKS server:</label><input id="ws-server" value="ws://127.0.0.1:7766/"></input>
|
|
<input id="irc-server" value="irc.dg.i2p"></input>
|
|
<button onclick="ws_try_connect()">connect</button>
|
|
<div id="irc-window">
|
|
</div>
|
|
</html>
|