login.html

 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="Forge-agnostic software release tracker">
 8
 9        <!-- Indicate that we support both light and dark mode -->
10        <meta name="color-scheme" content="dark light">
11
12        <!-- Preload CSS reset -->
13        <link rel="preload" href="/static/reset.css" as="style" />
14        <link rel="stylesheet" href="/static/reset.css" />
15
16        <!-- Preload CSS styles -->
17        <link rel="preload" href="/static/styles.css" as="style" />
18        <link rel="stylesheet" href="/static/styles.css" />
19    </head>
20    <body>
21        <h1>Willow</h1>
22        <form method="post">
23            <div class="input">
24                <label for="username">Username:</label>
25                <input type="text" id="username" name="username">
26            </div>
27            <div class="input">
28                <label for="password">Password:</label>
29                <input type="password" id="password" name="password">
30            </div>
31            <input class="button" type="submit" formaction="/login" value="Login">
32        </form>
33        <p><a href="https://sr.ht/~amolith/willow">Source code</a></p>
34    </body>
35</html>