toForm()

in code/client/static/js/main.js [22:28]


    toForm(){
        let form  = new FormData();
        form.append("name", this.name);
        form.append("age", this.age);
        form.append("city", this.city);
        return form;
    }