wasm-rdp/frontend/static/index.html

55 lines
870 B
HTML
Raw Normal View History

2021-11-01 13:36:38 +00:00
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
2021-11-02 13:38:59 +00:00
<title>Web Gateway</title>
2021-11-01 16:30:23 +00:00
<style type="text/css">
.navbar {
width: 100%;
height: 20px;
background-color: #66ccff;
}
.navbar .navbar-item {
margin: auto;
position: relative;
padding: 40px;
}
2021-11-03 16:03:35 +00:00
.horizontal-centre {
position: relative;
text-align: center;
}
.vertical-centre {
position: relative;
vertical-align: middle;
}
2021-11-01 16:30:23 +00:00
html,
body {
height: 100%;
margin: 0;
}
.content {
min-height: calc(100% - 58px - 40px);
}
.footer {
height: 58px;
}
</style>
2021-11-02 13:38:59 +00:00
<script type="module" defer>
import init from "/static/wasm.js";
import { run_app } from "/static/wasm.js";
await init();
await run_app();
</script>
2021-11-01 13:36:38 +00:00
</head>
<body>
</body>
2021-11-01 16:30:23 +00:00
2021-11-01 13:36:38 +00:00
</html>