new.html

 1<!--
 2SPDX-FileCopyrightText: Amolith <amolith@secluded.site>
 3
 4SPDX-License-Identifier: Apache-2.0
 5-->
 6
 7<!DOCTYPE html>
 8<html lang="en-GB">
 9    <head>
10        <title>Willow</title>
11        <meta name="viewport" content="width=device-width, initial-scale=1.0">
12        <meta name="title" content="Willow">
13        <meta name="description" content="Willow">
14        <style>
15html {
16  max-width: 500px;
17  margin: auto auto;
18}
19        </style>
20    </head>
21    <body>
22        <h1>Willow</h1>
23        <form method="post">
24            <div class="input">
25                <label for="url">Project URL:</label>
26                <input type="text" id="url" name="url">
27            </div>
28            <div class="input">
29                <label for="name">Project name:</label>
30                <input type="text" id="name" name="name">
31            </div>
32            <div class="input">
33                <h3>Forge type:</h3>
34                <p>RSS</p>
35                <input type="radio" id="github" name="forge" value="github">
36                <label for="github">Github</label><br>
37                <input type="radio" id="gitea" name="forge" value="gitea">
38                <label for="gitea">Gitea</label><br>
39                <input type="radio" id="Forgejo" name="forge" value="Forgejo">
40                <label for="Forgejo">Forgejo</label><br>
41                <p>Raw git</p>
42                <input type="radio" id="gitlab" name="forge" value="gitlab">
43                <label for="gitlab">GitLab</label><br>
44                <input type="radio" id="sourcehut" name="forge" value="sourcehut">
45                <label for="sourcehut">Sourcehut</label><br>
46                <input type="radio" id="bitbucket" name="forge" value="bitbucket">
47                <label for="bitbucket">Bitbucket</label><br>
48                <input type="radio" id="other" name="forge" value="other">
49                <label for="other">Other</label>
50            </div>
51            <input class="button" type="submit" formaction="/new" value="Next">
52        </form>
53    </body>
54</html>