Example #1
0
func Login(res http.ResponseWriter, req *http.Request, _ httprouter.Params) {
	Memcache.Template(res, req, "Loginpage", "login.html", tpl)
}
Example #2
0
func Signup(res http.ResponseWriter, req *http.Request, _ httprouter.Params) {
	Memcache.Template(res, req, "Signuppage", "signup.html", tpl)
}
Example #3
0
func Home(res http.ResponseWriter, req *http.Request, _ httprouter.Params) {
	Memcache.Template(res, req, "Homepage", "home.html", tpl)
}