bricks/examples/testlogin.html
2023-09-14 10:28:07 +08:00

25 lines
364 B
HTML

<html>
<head>
<link rel="stylesheet" href="/bricks/css/bricks.css" />
</head>
<body>
<script src="/bricks/bricks.js"></script>
<script>
const opts =
{
"widget": {
"widgettype":"Text",
"options":{
"text":"This is a test"
}
}
}
;
const app = new BricksApp(opts);
app.run();
await fetch('http://localhost/
</script>
</body>
</html>