core/ui: fix page title

This commit is contained in:
Caleb Doxsey 2024-02-08 09:41:12 -07:00
parent f9808a73ba
commit e7ea364ecb
9 changed files with 39 additions and 31 deletions

View file

@ -24,6 +24,6 @@ func SignedOut(data SignedOutData) http.Handler {
}
// otherwise show the signed-out page
return ui.ServePage(w, r, "SignedOut", data.ToJSON())
return ui.ServePage(w, r, "SignedOut", "Signed Out", data.ToJSON())
})
}