1<!DOCTYPE html>
2<html lang="en-GB">
3 <head>
4 <title>Willow</title>
5 <meta name="viewport" content="width=device-width, initial-scale=1.0">
6 <meta name="title" content="Willow">
7 <meta name="description" content="Willow">
8 <style>
9html {
10 max-width: 500px;
11 margin: auto auto;
12}
13 </style>
14 </head>
15 <body>
16 <h1>Willow</h1>
17 <form method="POST">
18 <div class="input">
19 <label for="username">Username:</label>
20 <input type="text" id="username" name="username">
21 </div>
22 <div class="input">
23 <label for="password">Password:</label>
24 <input type="password" id="password" name="password">
25 </div>
26 <input class="button" type="submit" formaction="/login" value="Login">
27 </form>
28 <p><a href="https://sr.ht/~amolith/willow">Source code</a></p>
29 </body>
30</html>