Fix rendering of signup page
This commit is contained in:
parent
beb4b914a0
commit
4972dd05ee
1 changed files with 5 additions and 1 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue