diff options
| author | Leonardo Bishop <me@leonardobishop.net> | 2025-07-14 01:55:10 +0100 |
|---|---|---|
| committer | Leonardo Bishop <me@leonardobishop.net> | 2025-07-14 01:55:10 +0100 |
| commit | 4c3e5c256930249798768b0195c42efca1428586 (patch) | |
| tree | 0492551ddbfdfbaa192804b95d0ce11e6cbdb406 /web/command/html/flags.go | |
| parent | 08a3fb8a2b0281c3c329b33215ec7f8866add606 (diff) | |
Add site deletion
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( |
