login page

This commit is contained in:
Matteo Rosati
2026-01-24 22:20:26 +01:00
parent f2deb162df
commit d00b48a197
10 changed files with 997 additions and 41 deletions

14
login.html Normal file
View File

@@ -0,0 +1,14 @@
<!doctype html>
<html>
<body>
<h1>LOGIN</h1>
<div id="login">
<input type="text" name="user" id="user" /><br />
<input type="password" name="password" id="password" /><br />
<button id="login-button">Login</button>
</div>
<script type="module" src="/src/login.ts"></script>
</body>
</html>