diff --git a/auth/auth.go b/auth/auth.go index 7747b90..e056e11 100644 --- a/auth/auth.go +++ b/auth/auth.go @@ -41,7 +41,7 @@ func (a *Auth) Initialize(c *authboss.Config) (err error) { } var tpl *template.Template - if tpl, err = template.New("login.html").Parse(string(data)); err != nil { + if tpl, err = template.New("login.tpl").Parse(string(data)); err != nil { return err } else { a.loginPage = &bytes.Buffer{}