mirror of
https://github.com/pomerium/pomerium.git
synced 2025-08-04 01:09:36 +02:00
core/ui: fix page title (#4957)
* core/ui: fix page title * cache template
This commit is contained in:
parent
76862c2fe8
commit
c6d1f17100
9 changed files with 56 additions and 31 deletions
|
@ -22,6 +22,6 @@ func (data SignOutConfirmData) ToJSON() map[string]interface{} {
|
|||
// SignOutConfirm returns a handler that renders the sign out confirm page.
|
||||
func SignOutConfirm(data SignOutConfirmData) http.Handler {
|
||||
return httputil.HandlerFunc(func(w http.ResponseWriter, r *http.Request) error {
|
||||
return ui.ServePage(w, r, "SignOutConfirm", data.ToJSON())
|
||||
return ui.ServePage(w, r, "SignOutConfirm", "Confirm Sign Out", data.ToJSON())
|
||||
})
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue