bunker/public/login.html
SimonFJ20 a03ad035fb
All checks were successful
Validate / Validate (push) Successful in 9s
init
2024-09-20 04:42:15 +02:00

24 lines
566 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bunker</title>
<script src="login.js" defer></script>
</head>
<body>
<h1>Login</h1>
<form id="login">
<label for="username">Username: </label><br>
<input type="text" id="username" name="username"><br>
<label for="password">Password:</label><br>
<input type="password" id="password" name="password"><br>
<input type="submit" value="Login">
</form>
</body>
</html>