2024-01-30 12:38:20 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<title>Client</title>
|
2024-01-30 15:36:40 +00:00
|
|
|
<script src="https://cjrtnc.leaningtech.com/3.0/cj3loader.js"></script>
|
2024-01-30 12:38:20 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<input type="text" id="ip"></input>
|
|
|
|
<script>
|
|
|
|
async function start(ip) {
|
|
|
|
await cheerpjInit({
|
|
|
|
tailscaleAuthKey: "PasteYourKeyHere",
|
|
|
|
});
|
|
|
|
cheerpjCreateDisplay(800, 600);
|
|
|
|
await cheerpjRunJar("/app/Client.jar", ip);
|
|
|
|
};
|
|
|
|
let el = document.querySelector("#ip");
|
|
|
|
el.addEventListener("keydown", (e) => {
|
|
|
|
if (e.key == "Enter") {
|
|
|
|
start(el.value);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|