28 lines
578 B
HTML
28 lines
578 B
HTML
<!--
|
|
This file isn't automatically served anywhere, it's just here to populate the directory
|
|
-->
|
|
|
|
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>Login</title>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="main-container">
|
|
|
|
<form action="/login" method="post">
|
|
<label for="username">Username: </label>
|
|
<input id="username" name="username" type="text" required>
|
|
<label for="password">Password: </label>
|
|
<input id="password" name="password" type="text" required>
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html> |