htmgo/htmgo-site/pages/examples/user-auth.go

11 lines
181 B
Go
Raw Permalink Normal View History

2024-10-28 16:39:46 +00:00
package examples
2024-10-28 15:56:03 +00:00
import (
"github.com/maddalax/htmgo/framework/h"
)
func UserAuthExample(ctx *h.RequestContext) *h.Page {
SetSnippet(ctx, &UserAuthSnippet)
return Index(ctx)
}