14 lines
435 B
1
{{ define "title" }}new repo{{ end }}
2
3
{{ define "content" }}
4
<h1>new repo</h1>
5
<form method="POST" action="/repo/new">
6
<label for="name">repo name</label>
7
<input type="text" id="name" name="name" required />
8
9
<label for="domain">domain</label>
10
<input type="domain" id="domain" name="domain" required />
11
12
<button class="btn my-2" type="submit">create repo</button>
13
</form>
14
{{ end }}
15