🏗️」 wip: work in progress, not done yet.

This commit is contained in:
y-syo
2025-10-05 18:10:07 +02:00
parent 35f5df4924
commit 156fd2b5a1
5 changed files with 69 additions and 25 deletions

View File

@ -0,0 +1,24 @@
import Aview from "./Aview.ts"
import { isLogged, navigationManager } from "../main.ts"
export default class extends Aview {
constructor()
{
super();
if (!isLogged())
navigationManager("/login");
this.setTitle("profile");
}
async getHTML() {
return `
<div id="main-window" class="text-center p-10 bg-white dark:bg-neutral-800 rounded-xl shadow space-y-4">
</div>
`;
}
async run() {
const main = document.getElementById("main-window");
}
}