From 5b065aba75e5f1bd90e7aa1cc305daf0f2ffb88b Mon Sep 17 00:00:00 2001 From: Jess Robinson Date: Sat, 16 May 2026 11:05:18 +0100 Subject: [PATCH] Add more reason values to the register form --- lib/AccessSystem/Form/Person.pm | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/lib/AccessSystem/Form/Person.pm b/lib/AccessSystem/Form/Person.pm index 12bfe92..63831cc 100644 --- a/lib/AccessSystem/Form/Person.pm +++ b/lib/AccessSystem/Form/Person.pm @@ -231,11 +231,19 @@ has_field how_found_us => field_add_defaults { required => 1, widget => 'RadioGroup', options => [ - { value => 'google search', label => 'Google Search' }, - { value => 'twitter', label => 'Twitter' }, + { value => 'google search', label => 'Internet Search' }, + { value => 'twitter', label => 'X/Twitter' }, { value => 'facebook', label => 'Facebook' }, + { value => 'instagram', label => 'Instagram' }, + { value => 'mastodon', label => 'Mastodon' }, { value => 'other social media', label => 'Other Social Media' }, - { value => 'event/conference', label => 'Event or Conference' }, + { value => 'comiccon', label => 'ComicCon' }, + { value => 'festivaloftomorrow', label => 'Festival of Tomorrow' }, + { value => 'event/conference', label => 'other Event or Conference' }, + { value => 'openday', label => 'Open Day' }, + { value => 'banner', label => 'Banner' }, + { value => 'brochure', label => 'Brochure' }, + { value => 'advertising', label => 'Other Advertising' }, { value => 'referred by friend/family', label => 'Referred by Friend or Family' }, { value => 'other', label => 'Other' }, ],