diff options
Diffstat (limited to 'web/command/html/flags.go')
| -rw-r--r-- | web/command/html/flags.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/web/command/html/flags.go b/web/command/html/flags.go index a7fb99f..728b415 100644 --- a/web/command/html/flags.go +++ b/web/command/html/flags.go @@ -52,6 +52,7 @@ func FlagsPage(success, err string, siteName string, flags config.SiteFlag) Node ID("tls"), Name("tls"), Type("checkbox"), + Disabled(), If(flags&config.FlagTLS != 0, Checked()), ), Label( @@ -69,6 +70,7 @@ func FlagsPage(success, err string, siteName string, flags config.SiteFlag) Node ID("index"), Name("index"), Type("checkbox"), + Disabled(), If(flags&config.FlagIndex != 0, Checked()), ), Label( @@ -86,6 +88,7 @@ func FlagsPage(success, err string, siteName string, flags config.SiteFlag) Node ID("password"), Name("password"), Type("checkbox"), + Disabled(), If(flags&config.FlagPassword != 0, Checked()), ), Label( |
