// This file was generated by the makefile. Do not edit. package server // defaultTemplates is a key for file name to file data of the files in web/templates. var defaultTemplates = map[string]string{ "approval.html": `{{ template "header.html" . }}

Grant Access


{{ .Client }} would like to:
{{ range $scope := .Scopes }}
  • {{ $scope }}
  • {{ end }}

    {{ template "footer.html" . }} `, "footer.html": ` `, "header.html": ` {{ .Issuer }}
    `, "login.html": `{{ template "header.html" . }}

    Log in to {{ .Issuer }}

    {{ range $c := .Connectors }} {{ end }}
    {{ template "footer.html" . }} `, "oob.html": `{{ template "header.html" . }}

    Login Successful

    Please copy this code, switch to your application and paste it there:
    {{ template "footer.html" . }} `, "password.html": `{{ template "header.html" . }}

    Log in to Your Account

    {{ if .Invalid }}
    Invalid username and password.
    {{ end }}
    {{ template "footer.html" . }} `, }