alpha
Login
or
Join now
dunkirk.sh
/
core
forked from
tangled.org/core
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
remove wrapper container
author
Anirudh Oppiliappan
date
1 year ago
(Feb 14, 2025, 4:08 PM +0200)
commit
29956cbb
29956cbb1813df93893d74755c879887f80353ee
parent
95668984
9566898415cd5ff0cfb7b4bb0d57944c403ffbed
+35
-37
1 changed file
Expand all
Collapse all
Unified
Split
appview
pages
templates
repo
new.html
+35
-37
appview/pages/templates/repo/new.html
Reviewed
···
1
1
{{ define "title" }}new repo{{ end }}
2
2
3
3
{{ define "content" }}
4
4
-
<div class="container">
5
5
-
<h1>new repo</h1>
6
6
-
<form>
7
7
-
<label for="name">repo name</label>
8
8
-
<input
9
9
-
type="text"
10
10
-
id="name"
11
11
-
name="name"
12
12
-
class="px-1 border-2 border-blue-100"
13
13
-
required
14
14
-
/>
4
4
+
<h1>new repo</h1>
5
5
+
<form>
6
6
+
<label for="name">repo name</label>
7
7
+
<input
8
8
+
type="text"
9
9
+
id="name"
10
10
+
name="name"
11
11
+
class="px-1 border-2 border-blue-100"
12
12
+
required
13
13
+
/>
15
14
16
16
-
<fieldset class="border-blue-100 border-2">
17
17
-
<legend>select a knot:</legend>
18
18
-
{{ range .Knots }}
19
19
-
<label>
20
20
-
<input
21
21
-
class="px-1 border-2 border-blue-500"
22
22
-
type="radio"
23
23
-
name="domain"
24
24
-
value="{{ . }}"
25
25
-
/>
26
26
-
{{ . }} </label
27
27
-
><br />
28
28
-
{{ else }}
29
29
-
<p>no knots available</p>
30
30
-
{{ end }}
31
31
-
</fieldset>
15
15
+
<fieldset class="border-blue-100 border-2">
16
16
+
<legend>select a knot:</legend>
17
17
+
{{ range .Knots }}
18
18
+
<label>
19
19
+
<input
20
20
+
class="px-1 border-2 border-blue-500"
21
21
+
type="radio"
22
22
+
name="domain"
23
23
+
value="{{ . }}"
24
24
+
/>
25
25
+
{{ . }} </label
26
26
+
><br />
27
27
+
{{ else }}
28
28
+
<p>no knots available</p>
29
29
+
{{ end }}
30
30
+
</fieldset>
32
31
33
33
-
<button
34
34
-
type="submit"
35
35
-
hx-post="/repo/new"
36
36
-
hx-swap="none"
37
37
-
class="my-2 btn"
38
38
-
>
39
39
-
create repo
40
40
-
</button>
41
41
-
</form>
42
42
-
</div>
32
32
+
<button
33
33
+
type="submit"
34
34
+
hx-post="/repo/new"
35
35
+
hx-swap="none"
36
36
+
class="my-2 btn"
37
37
+
>
38
38
+
create repo
39
39
+
</button>
40
40
+
</form>
43
41
44
42
<div id="repo" class="error"></div>
45
43
{{ end }}