File tree 3 files changed +41
-1
lines changed
3 files changed +41
-1
lines changed Original file line number Diff line number Diff line change 5
5
header {
6
6
background-color : {{.HeaderColor }};
7
7
color : # fff ;
8
- font- size: 2rem ;
8
+ font- size: 1rem ;
9
9
padding: 1rem;
10
10
}
11
11
main {
12
12
padding : 1rem ;
13
13
}
14
+ label {
15
+ display : inline-block;
16
+ width : {{.Form .Width }}em;
17
+ }
Original file line number Diff line number Diff line change @@ -31,10 +31,27 @@ type LandingConfig struct {
31
31
CSS string // CSS style tag for the landing page.
32
32
Name string // The name of the exporter, generally suffixed by _exporter.
33
33
Description string // A short description about the exporter.
34
+ Form LandingForm // A POST form.
34
35
Links []LandingLinks // Links displayed on the landing page.
35
36
Version string // The version displayed.
36
37
}
37
38
39
+ // LandingForm provides a configuration struct for creating a POST form on the landing page.
40
+ type LandingForm struct {
41
+ Action string
42
+ Inputs []LandingFormInput
43
+ Width float64
44
+ }
45
+
46
+ // LandingFormInput represents a single form input field.
47
+ type LandingFormInput struct {
48
+ Label string
49
+ Type string
50
+ Name string
51
+ Placeholder string
52
+ Value string
53
+ }
54
+
38
55
type LandingLinks struct {
39
56
Address string // The URL the link points to.
40
57
Text string // The text of the link.
54
71
55
72
func NewLandingPage (c LandingConfig ) (* LandingPageHandler , error ) {
56
73
var buf bytes.Buffer
74
+
75
+ length := 0
76
+ for _ , input := range c .Form .Inputs {
77
+ inputLength := len (input .Label )
78
+ if inputLength > length {
79
+ length = inputLength
80
+ }
81
+ }
82
+ c .Form .Width = (float64 (length ) + 1 ) / 2
57
83
if c .CSS == "" {
58
84
if c .HeaderColor == "" {
59
85
// Default to Prometheus orange.
Original file line number Diff line number Diff line change @@ -19,6 +19,16 @@ <h1>{{.Name}}</h1>
19
19
{{ end }}
20
20
</ ul >
21
21
</ div >
22
+ {{ if .Form.Action }}
23
+ < div >
24
+ < form action ="{{ .Form.Action}} ">
25
+ {{ range .Form.Inputs }}
26
+ < label > {{ .Label }}:</ label > < input type ="{{ .Type }} " name ="{{ .Name }} " placeholder =" .Placeholder }} " value ="{{ .Value }} "> < br >
27
+ {{ end }}
28
+ < input type ="submit " value ="Submit ">
29
+ </ form >
30
+ </ div >
31
+ {{ end }}
22
32
</ main >
23
33
</ body >
24
34
</ html >
You can’t perform that action at this time.
0 commit comments