miniwol/web/template/login.html
2022-02-21 15:57:54 +01:00

14 lines
282 B
HTML

<form action="/auth" method="post">
<fieldset>
<legend>Login</legend>
<label for="pw">Password</label><input type="password" id="pw" name="Password">
<input type="submit" value="Submit">
</fieldset>
</form>
<style>
form {
max-width: max-content;
}
</style>