This commit is contained in:
2025-12-12 22:00:48 +01:00
commit 04d4a94b50
37 changed files with 1336 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link href="style.css" rel="stylesheet">
<script src="js/login.js"></script>
</head>
<body>
<div class="fixed-center">
<h1>Login</h1>
<form id="login-form">
<table>
<tr>
<td><label for="username">Username</label></td>
<td><input autocomplete="username" type="text" id="username"></td>
</tr>
<tr>
<td><label for="password">Password</label></td>
<td><input autocomplete="current-password" type="password" id="password"></td>
</tr>
</table>
<button type="submit">Login</button>
</form>
</div>
</body>
</html>