miniwol/web/template/login.html

14 lines
282 B
HTML
Raw Normal View History

<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>
2022-02-21 14:57:54 +00:00
<style>
form {
max-width: max-content;
}
</style>