如何从HTTP Get请求到连续的HTTP Post请求获取cookie

For testing I like to simulate signups. I get the signup page, fill in the form and post it. Apparently the session cookie that is provided by the server is not sent in the post request. If I access the server from a web browser all works fine. I can see that the response to Get contains the cookie. How can I add it to the PostForm?

func signup(name string, ret chan bool) {
    var xsrf string

    fmt.Println("Starting signup with", name)
    response, err := http.Get("http://localhost:8080/signup")
    if err != nil {
        panic(err)
    } else {
        defer response.Body.Close()
        buffer, _ := ioutil.ReadAll(response.Body)
        xsrf = regXsrf.FindStringSubmatch(string(buffer))[1]
    }   

    data := url.Values{}
    data.Set("name", name)
    data.Add("password", "111222")
    data.Add("password2", "111222")
    data.Add("groupcode", "AllesWirdGut")
    data.Add("websocketstoken", xsrf)

    response, err = http.PostForm("http://localhost:8080/signup", data)
    if err != nil {
        panic(err)
    } else {
        defer response.Body.Close()
    }   
}