{{define "auth_base"}} {{if .Title}}{{.Title}}{{else}}Auth Demo{{end}}
“Simply all the tools that my team and I need.”
Karen Yue · Director of Digital Marketing Technology
{{if eq .View "login"}} {{template "login_content" .}} {{else if eq .View "signup"}} {{template "signup_content" .}} {{else if eq .View "dashboard"}} {{template "dashboard_content" .}} {{else if eq .View "unauthorized"}} {{template "unauthorized_content" .}} {{else}} {{template "auth_default_content" .}} {{end}}
{{end}} {{define "auth_default_content"}}

Authentication

Pick an auth flow to continue.

{{end}} {{define "dashboard_content"}}

Welcome back

You're signed in as {{.Email}}.

{{if .CreatedAt}}

Member since .

{{end}}

This dashboard will grow alongside the authentication features.

{{end}} {{define "unauthorized_content"}}

Access denied

{{if .Error}}{{.Error}}{{else}}You do not have permission to view that page.{{end}}

{{end}}