this repo has no description
1<html>
2 {{ template "layouts/head" . }}
3
4 <body>
5 <main>
6 <h1>create a new repository</h1>
7 <form>
8 <p>
9 Give your Git repository a name and, optionally, a
10 description.
11 </p>
12 <div id="repo"></div>
13 <div>
14 <label for="name">Name</label>
15 <input type="text" id="name" name="name" placeholder="" />
16 <label for="description">Description</label>
17 <input
18 type="text"
19 id="description"
20 name="description"
21 placeholder=""
22 />
23 </div>
24 <button hx-put="/repo/new" hx-swap="none" type="submit">
25 Submit
26 </button>
27 </form>
28 </main>
29 </body>
30</html>