19 lines
504 B
HTML
19 lines
504 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>LNA Test - Fetch https://localhost</title>
|
|
</head>
|
|
<body>
|
|
<script type="text/javascript">
|
|
window.addEventListener("load", function () {
|
|
let params = new URLSearchParams(window.location.search);
|
|
let port = params.get("port") || "8443";
|
|
let host = params.get("host") || "localhost";
|
|
let scheme = params.get("scheme") || "https";
|
|
fetch(scheme + "://" + host + ":" + port).catch(() => {});
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|