File tree 3 files changed +5
-1
lines changed
3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -15,3 +15,4 @@ label {
15
15
display : inline-block;
16
16
width : {{.Form .Width }}em ;
17
17
}
18
+ {{.ExtraCSS }}
Original file line number Diff line number Diff line change @@ -33,6 +33,8 @@ type LandingConfig struct {
33
33
Description string // A short description about the exporter.
34
34
Form LandingForm // A POST form.
35
35
Links []LandingLinks // Links displayed on the landing page.
36
+ ExtraHTML string // Additional HTML to be embedded.
37
+ ExtraCSS string // Additional CSS to be embedded.
36
38
Version string // The version displayed.
37
39
}
38
40
Original file line number Diff line number Diff line change @@ -23,12 +23,13 @@ <h1>{{.Name}}</h1>
23
23
< div >
24
24
< form action ="{{ .Form.Action}} ">
25
25
{{ range .Form.Inputs }}
26
- < label > {{ .Label }}:</ label > < input type ="{{ .Type }} " name ="{{ .Name }} " placeholder =" .Placeholder }} " value ="{{ .Value }} "> < br >
26
+ < label > {{ .Label }}:</ label > < input type ="{{ .Type }} " name ="{{ .Name }} " placeholder ="{{ .Placeholder }} " value ="{{ .Value }} "> < br >
27
27
{{ end }}
28
28
< input type ="submit " value ="Submit ">
29
29
</ form >
30
30
</ div >
31
31
{{ end }}
32
+ {{ .ExtraHTML }}
32
33
</ main >
33
34
</ body >
34
35
</ html >
You can’t perform that action at this time.
0 commit comments