2022-04-06 10:06:21 +00:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<link rel="stylesheet" href="/steam_resource/css/2.css">
|
|
|
|
<link rel="stylesheet" href="/steam_resource/css/39.css">
|
|
|
|
<link rel="stylesheet" href="/steam_resource/css/library.css">
|
|
|
|
<script src="/static/library.js"></script>
|
2022-05-09 17:17:53 +00:00
|
|
|
<script>
|
|
|
|
function getUID() {
|
|
|
|
return call_plugin_method("whoami", {});
|
|
|
|
}
|
2022-05-09 17:22:32 +00:00
|
|
|
|
|
|
|
function onReady() {
|
|
|
|
let heading = document.getElementById("heading");
|
|
|
|
let id = getUID();
|
|
|
|
|
|
|
|
heading.innerText = `Hello ${id}`;
|
|
|
|
}
|
2022-05-09 17:17:53 +00:00
|
|
|
</script>
|
2022-04-06 10:06:21 +00:00
|
|
|
</head>
|
2022-05-09 17:23:21 +00:00
|
|
|
<body onload="onReady()">
|
2022-05-09 17:22:32 +00:00
|
|
|
<h2 id="heading">Hello World</h2>
|
2022-05-09 17:17:53 +00:00
|
|
|
<div class="gamepaddialog_GamepadDialogContent_InnerWidth_2ywyS DialogContent_InnerWidth Panel Focusable">
|
2022-04-06 10:06:21 +00:00
|
|
|
</body>
|
2022-05-09 17:17:53 +00:00
|
|
|
</html>
|