allowances/handlers.go

24 lines
609 B
Go
Raw Normal View History

package main
import (
"log"
"net/http"
)
2013-02-21 00:19:38 -08:00
func homeHandler(w http.ResponseWriter, req *http.Request) {
session, _ := store.Get(req, "creds")
loggedIn := session.Values["logged in"]
if loggedIn == nil {
http.Redirect(w, req, "/login", http.StatusSeeOther)
}
T("index.html").Execute(w, map[string]interface{}{})
}
2013-02-21 00:19:38 -08:00
func loginHandler(w http.ResponseWriter, req *http.Request) {
pwAttempt := req.FormValue("passwd")
2013-02-21 00:19:38 -08:00
// if pw matches, set session.Values["logged in"], then redirect to "/"
// else come back here..
log.Printf("%v\n", pwAttempt)
2013-02-21 00:19:38 -08:00
T("login.html").Execute(w, map[string]interface{}{})
}