Files
CustomPanel/resources/website/login.html
T
2025-12-12 22:00:48 +01:00

27 lines
817 B
HTML

<!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>