From 66bd5d2f7fd84eec39d69f4a8f5c435fc978804f Mon Sep 17 00:00:00 2001 From: Leonardo Bishop Date: Thu, 19 Mar 2026 17:14:20 +0000 Subject: Add site passwords --- web/command/html/password.go | 53 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 web/command/html/password.go (limited to 'web/command/html/password.go') diff --git a/web/command/html/password.go b/web/command/html/password.go new file mode 100644 index 0000000..3c53048 --- /dev/null +++ b/web/command/html/password.go @@ -0,0 +1,53 @@ +package html + +import ( + "fmt" + + . "github.com/LMBishop/scrapbook/web/skeleton" + . "maragu.dev/gomponents" + . "maragu.dev/gomponents/html" +) + +func PasswordPage(success, err, siteName, passwordValue string) Node { + return Page("Change password for "+siteName, + H1(Text("Change password for "+siteName)), + + If(success != "", Group{ + AlertSuccess(success), + Div( + Class("control-group group-right"), + NavButton("OK", fmt.Sprintf("/site/%s/", siteName)), + ), + }), + + If(success == "", Group{ + If(err != "", AlertError(err)), + + Form( + Method("post"), + + FieldSet( + Legend(Text("Password")), + Input( + ID("password"), + Name("password"), + Value(passwordValue), + ), + Span( + Class("form-help"), + Text("The password visitors must enter to be able to view the site."), + ), + ), + + Div( + Class("control-group group-right"), + NavButton("Go back", fmt.Sprintf("/site/%s/", siteName)), + Input( + Type("submit"), + Value("Submit"), + ), + ), + ), + }), + ) +} -- cgit v1.2.3-70-g09d2