Fixed Change Password Bug
This commit is contained in:
parent
fa22a9eb37
commit
7a5c9be1ad
2 changed files with 2 additions and 1 deletions
2
home.go
2
home.go
|
@ -28,7 +28,7 @@ func handleHome(w http.ResponseWriter, r *http.Request) {
|
|||
|
||||
can_admin := false
|
||||
if login != nil {
|
||||
http.Redirect(w, r, "/", http.StatusTemporaryRedirect)
|
||||
can_admin = login.CanAdmin
|
||||
}
|
||||
|
||||
data := HomePageData{
|
||||
|
|
1
login.go
1
login.go
|
@ -95,6 +95,7 @@ func handleLogin(w http.ResponseWriter, r *http.Request) *LoginInfo {
|
|||
}
|
||||
templateLogin.Execute(w, data)
|
||||
}
|
||||
http.Redirect(w, r, "/", http.StatusTemporaryRedirect)
|
||||
return loginInfo
|
||||
|
||||
} else if r.Method == "GET" {
|
||||
|
|
Loading…
Reference in a new issue