UNIBEN · UBTH
Nominate Spirit-filled servants to lead the Ugbowo CAC. 17 executive positions. Your voice matters.
All 17 Ugbowo CAC executive positions are required. You will nominate one person per role.
Provide correct information to proceed with nominations
Check all 17 positions carefully before submitting.
Once submitted, nominations cannot be changed. Review each name carefully before continuing.
Recording your nominations securely
Your nominations for all 17 Ugbowo CAC positions have been recorded successfully. Thank you for participating in CASOR Elections 2026.
Christ Ambassadors Students Outreach · UNIBEN / UBTH
Connect this page to Google Sheets to capture all nominations automatically.
Go to sheets.google.com and create a spreadsheet named CASOR Elections 2026.
Click Extensions → Apps Script. Delete everything and paste this code, then Deploy as Web App (access: Anyone):
function doPost(e){
var ss=SpreadsheetApp.getActiveSpreadsheet();
var sh=ss.getSheetByName("Nominations")
||ss.insertSheet("Nominations");
if(sh.getLastRow()===0){
var h=["Timestamp","Name","Phone","Email","Ref","Phase"];
for(var i=0;i<17;i++)
h.push("C"+(i+1)+"_Pos","C"+(i+1)+"_Name","C"+(i+1)+"_Unit");
sh.appendRow(h);
}
var d=JSON.parse(e.postData.contents);
var row=[new Date(),d.name,d.phone,d.email,d.ref,d.phase||"CAC"];
for(var i=0;i<17;i++){
row.push(d["cec_"+i+"_pos"]||"");
row.push(d["cec_"+i+"_name"]||"");
row.push(d["cec_"+i+"_unit"]||"");
}
sh.appendRow(row);
return ContentService.createTextOutput("ok");
}
Paste your deployed Web App URL below: