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/colours.css" as="style" />
18 <link rel="stylesheet" href="/static/colours.css" />
19 <link rel="preload" href="/static/styles.css" as="style" />
20 <link rel="stylesheet" href="/static/styles.css" />
21 </head>
22 <body class="old-wrapper">
23 <h1>Willow</h1>
24 <form method="post">
25 <div class="input">
26 <label for="url">Project URL:</label>
27 <input type="text" id="url" name="url">
28 </div>
29 <div class="input">
30 <label for="name">Project name:</label>
31 <input type="text" id="name" name="name">
32 </div>
33 <div class="input">
34 <h3>Forge type:</h3>
35 <p>RSS</p>
36 <input type="radio" id="github" name="forge" value="github">
37 <label for="github">Github</label><br>
38 <input type="radio" id="gitea" name="forge" value="gitea">
39 <label for="gitea">Gitea</label><br>
40 <input type="radio" id="forgejo" name="forge" value="forgejo">
41 <label for="forgejo">Forgejo</label><br>
42 <p>Raw git</p>
43 <input type="radio" id="gitlab" name="forge" value="gitlab">
44 <label for="gitlab">GitLab</label><br>
45 <input type="radio" id="sourcehut" name="forge" value="sourcehut">
46 <label for="sourcehut">Sourcehut</label><br>
47 <input type="radio" id="bitbucket" name="forge" value="bitbucket">
48 <label for="bitbucket">Bitbucket</label><br>
49 <input type="radio" id="other" name="forge" value="other">
50 <label for="other">Other</label>
51 </div>
52 <input class="button" type="submit" formaction="/new" value="Next">
53 </form>
54 </body>
55</html>