import React from 'react'; import { Label } from '../ui/label'; import { Input } from '../ui/input'; import { Textarea } from '../ui/textarea'; import { Checkbox } from '../ui/checkbox'; const RegistrationStep2 = ({ formData, setFormData, handleInputChange }) => { const volunteerOptions = [ 'Welcoming new members at events', 'Sending out birthday cards', 'Care Team Calls', 'Sharing ideas for events', 'Researching grants', 'Applying for grants', 'Assisting with TeatherLOAFers', 'Assisting with ActiveLOAFers', 'Assisting with weekday Lunch Bunch', 'Uploading Photos to the Website', 'Assisting with eNewsletter', 'Other administrative task' ]; const handleVolunteerChange = (option) => { setFormData(prev => { const interests = prev.volunteer_interests.includes(option) ? prev.volunteer_interests.filter(i => i !== option) : [...prev.volunteer_interests, option]; return { ...prev, volunteer_interests: interests }; }); }; return (
Please check what information may be published in LOAF Newsletter
If referred by a current member, you may skip the event attendance requirement.
I may at some time be interested in volunteering with LOAF in the following ways (training is provided)
Scholarship information is kept confidential
{formData.scholarship_requested && (