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