logout button
This commit is contained in:
parent
028c023f80
commit
022619246e
5 changed files with 32 additions and 1 deletions
|
|
@ -43,6 +43,7 @@ func (a *Authenticator) Middleware(in http.Handler) http.Handler {
|
|||
handler := http.NewServeMux()
|
||||
handler.HandleFunc("GET /login", getLogin)
|
||||
handler.HandleFunc("POST /login", a.login)
|
||||
handler.HandleFunc("GET /logout", a.logout)
|
||||
handler.Handle("/", a.ensureAuth(in))
|
||||
return handler
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue