fixed leaking info, plus go fmt

This commit is contained in:
Stephen McQuay 2013-03-06 13:31:30 -07:00
parent fe0411e8df
commit 6a62e10c26
3 changed files with 7 additions and 6 deletions

View File

@ -9,10 +9,11 @@ func homeHandler(w http.ResponseWriter, req *http.Request) {
loggedIn := session.Values["logged in"]
if loggedIn == nil {
http.Redirect(w, req, "/login", http.StatusSeeOther)
return
}
children := loadChildren(*db_file)
T("index.html").Execute(w, map[string]interface{}{
"children": children,})
"children": children})
}
func loginHandler(w http.ResponseWriter, req *http.Request) {