func login(w http.ResponseWriter,r *http.Request){ if r.Method==GEt{//登录界面 crutime:=time.Now().Unix()//获取当前时间戳 h:=md5.New()//获取md5哈希接口 io.WriteString(h,strconv.FormatInt(crutime,10))//写入h中 token:=fmt.Sprintf(%x,h.Sum(nil))//获取哈希结果 t,_=template.ParseFiles(login.gtpl)//解析模板 t.Execut