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="url">Project URL:</label>
20 <input type="text" id="url" name="url">
21 </div>
22 <div class="input">
23 <label for="name">Project name:</label>
24 <input type="text" id="name" name="name">
25 </div>
26 <div class="input">
27 <h3>Forge type:</h3>
28 <p>RSS</p>
29 <input type="radio" id="github" name="forge" value="github">
30 <label for="github">Github</label><br>
31 <input type="radio" id="gitea" name="forge" value="gitea">
32 <label for="gitea">Gitea</label><br>
33 <input type="radio" id="Forgejo" name="forge" value="Forgejo">
34 <label for="Forgejo">Forgejo</label><br>
35 <p>Raw git</p>
36 <input type="radio" id="gitlab" name="forge" value="gitlab">
37 <label for="gitlab">GitLab</label><br>
38 <input type="radio" id="sourcehut" name="forge" value="sourcehut">
39 <label for="sourcehut">Sourcehut</label><br>
40 <input type="radio" id="bitbucket" name="forge" value="bitbucket">
41 <label for="bitbucket">Bitbucket</label><br>
42 <input type="radio" id="other" name="forge" value="other">
43 <label for="other">Other</label>
44 </div>
45 <input class="button" type="submit" formaction="/new" value="Next">
46 </form>
47 </body>
48</html>