mirror of
https://github.com/zitadel/zitadel.git
synced 2025-04-22 11:51:34 +00:00

* profile data * fix scripts * fix image paths * feat: show profile (with image) when possible * fix profile image width
19 lines
400 B
Go
19 lines
400 B
Go
package handler
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
const (
|
|
tmplLogoutDone = "logoutdone"
|
|
)
|
|
|
|
func (l *Login) handleLogoutDone(w http.ResponseWriter, r *http.Request) {
|
|
l.renderLogoutDone(w, r)
|
|
}
|
|
|
|
func (l *Login) renderLogoutDone(w http.ResponseWriter, r *http.Request) {
|
|
data := l.getUserData(r, nil, "Logout Done", "", "")
|
|
l.renderer.RenderTemplate(w, r, l.renderer.Templates[tmplLogoutDone], data, nil)
|
|
}
|