Midwest Devo Youth Cycling Team
Kit Feedback Survey
Select who you are to get the right set of questions
Rider / Support Crew
Adult rider, coach, or volunteer
Rider (13+)
Youth team member
1 of 8
Kit Feedback Survey
Thanks for your feedback!
Your honest input helps us evaluate our current kit and decide what is best for the whole team.
0
total responses collected
Export to Google Sheets
Paste your Google Apps Script Web App URL below. Each submission will automatically post a row to your sheet.
Show Google Apps Script setup code
In Google Sheets → Extensions → Apps Script → paste this → Deploy as web app (access: Anyone) → copy the URL above.
function doPost(e) {
var sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet();
var data = JSON.parse(e.postData.contents);
var keys = Object.keys(data);
if (sheet.getLastRow() === 0) sheet.appendRow(keys);
sheet.appendRow(keys.map(function(k) {
return data[k] !== undefined ? data[k] : "";
}));
return ContentService.createTextOutput("ok");
}