Fix rendering of signup page

This commit is contained in:
Eli Ribble 2026-03-07 02:31:23 +00:00
parent beb4b914a0
commit 4972dd05ee
No known key found for this signature in database

View file

@ -31,7 +31,11 @@ func getSignout(w http.ResponseWriter, r *http.Request, org *models.Organization
func getSignup(w http.ResponseWriter, r *http.Request) {
data := contentSignup{}
html.RenderOrError(w, "sync/signup.html", data)
html.RenderOrError(w, "sync/signup.html", contentUnauthenticated[contentSignup]{
C: data,
Config: html.NewContentConfig(),
URL: html.NewContentURL(),
})
}
func postSignin(w http.ResponseWriter, r *http.Request) {