From 7a09a47de24d47d3b7971c6657787533ff893e14 Mon Sep 17 00:00:00 2001 From: Matt Baer Date: Wed, 19 Aug 2020 15:20:13 -0400 Subject: [PATCH] Include OAuth buttons on signup-via-invite page --- templates.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates.go b/templates.go index 3cef57a..be1412c 100644 --- a/templates.go +++ b/templates.go @@ -92,7 +92,7 @@ func initPage(parentDir, path, key string) { filepath.Join(parentDir, templatesDir, "user", "include", "silenced.tmpl"), } - if key == "login.tmpl" || key == "landing.tmpl" { + if key == "login.tmpl" || key == "landing.tmpl" || key == "signup.tmpl" { files = append(files, filepath.Join(parentDir, templatesDir, "include", "oauth.tmpl")) }