25 lines
805 B
HTML
25 lines
805 B
HTML
<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>
|
|
<script>
|
|
function getUID() {
|
|
return call_plugin_method("whoami", {});
|
|
}
|
|
|
|
function onReady() {
|
|
let heading = document.getElementById("heading");
|
|
let id = getUID();
|
|
|
|
heading.innerText = `Hello ${id}`;
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="onReady()">
|
|
<h2 id="heading">Hello World</h2>
|
|
<div class="gamepaddialog_GamepadDialogContent_InnerWidth_2ywyS DialogContent_InnerWidth Panel Focusable">
|
|
</body>
|
|
</html>
|