React Volunteer Signup Form Generator

Recruit volunteers for your organization

Back to Generator

Form Preview

React Code

import React, { useState } from 'react';
import './styles.css'; // You can create a separate CSS file or use styled-components

const VolunteerSignupForm = () => {
  // State for form data
  const [formData, setFormData] = useState({
    name: '',
    email: '',
    phone: '',
    availability: [],
    interests: [],
    experience: '',
  });

  // Handle input changes
  const handleChange = (e) => {
    const { name, value, type, checked } = e.target;
    
    if (type === 'checkbox') {
      // Handle checkboxes differently based on multiple or single
      if (name === 'consent' || name === 'terms' || name === 'remember') {
        setFormData({
          ...formData,
          [name]: checked ? 'Yes' : ''
        });
      } else {
        // For multiple checkbox options
        if (checked) {
          setFormData({
            ...formData,
            [name]: [...formData[name], value]
          });
        } else {
          setFormData({
            ...formData,
            [name]: formData[name].filter(item => item !== value)
          });
        }
      }
    } else {
      setFormData({
        ...formData,
        [name]: value
      });
    }
  };

  // Handle form submission
  const handleSubmit = (e) => {
    e.preventDefault();
    console.log('Form submitted with data:', formData);
    // You would typically send this data to an API here
    alert('Form submitted successfully!');
  };

  return (
    <div className="form-container">
      <form onSubmit={handleSubmit}>
        <div className="form-group">
          <label htmlFor="name" className="required">Full Name</label>
          <input
            type="text"
            id="name"
            name="name"
            value={formData.name}
            onChange={handleChange}
            required
          />
        </div>
        <div className="form-group">
          <label htmlFor="email" className="required">Email Address</label>
          <input
            type="email"
            id="email"
            name="email"
            value={formData.email}
            onChange={handleChange}
            required
          />
        </div>
        <div className="form-group">
          <label htmlFor="phone" className="required">Phone Number</label>
          <input
            type="tel"
            id="phone"
            name="phone"
            value={formData.phone}
            onChange={handleChange}
            required
          />
        </div>
        <div className="form-group">
          <label htmlFor="availability" className="required">Availability</label>
          <div className="checkbox-group">
            <div className="checkbox-item">
              <input
                type="checkbox"
                id="availability-0"
                name="availability"
                value="Weekdays"
                checked={formData.availability.includes('Weekdays')}
                onChange={handleChange}
              />
              <label htmlFor="availability-0">Weekdays</label>
            </div>
            <div className="checkbox-item">
              <input
                type="checkbox"
                id="availability-1"
                name="availability"
                value="Weekends"
                checked={formData.availability.includes('Weekends')}
                onChange={handleChange}
              />
              <label htmlFor="availability-1">Weekends</label>
            </div>
            <div className="checkbox-item">
              <input
                type="checkbox"
                id="availability-2"
                name="availability"
                value="Evenings"
                checked={formData.availability.includes('Evenings')}
                onChange={handleChange}
              />
              <label htmlFor="availability-2">Evenings</label>
            </div>
            <div className="checkbox-item">
              <input
                type="checkbox"
                id="availability-3"
                name="availability"
                value="Mornings"
                checked={formData.availability.includes('Mornings')}
                onChange={handleChange}
              />
              <label htmlFor="availability-3">Mornings</label>
            </div>
          </div>
        </div>
        <div className="form-group">
          <label htmlFor="interests" className="required">Areas of Interest</label>
          <div className="checkbox-group">
            <div className="checkbox-item">
              <input
                type="checkbox"
                id="interests-0"
                name="interests"
                value="Event Support"
                checked={formData.interests.includes('Event Support')}
                onChange={handleChange}
              />
              <label htmlFor="interests-0">Event Support</label>
            </div>
            <div className="checkbox-item">
              <input
                type="checkbox"
                id="interests-1"
                name="interests"
                value="Administration"
                checked={formData.interests.includes('Administration')}
                onChange={handleChange}
              />
              <label htmlFor="interests-1">Administration</label>
            </div>
            <div className="checkbox-item">
              <input
                type="checkbox"
                id="interests-2"
                name="interests"
                value="Fundraising"
                checked={formData.interests.includes('Fundraising')}
                onChange={handleChange}
              />
              <label htmlFor="interests-2">Fundraising</label>
            </div>
            <div className="checkbox-item">
              <input
                type="checkbox"
                id="interests-3"
                name="interests"
                value="Marketing"
                checked={formData.interests.includes('Marketing')}
                onChange={handleChange}
              />
              <label htmlFor="interests-3">Marketing</label>
            </div>
            <div className="checkbox-item">
              <input
                type="checkbox"
                id="interests-4"
                name="interests"
                value="Community Outreach"
                checked={formData.interests.includes('Community Outreach')}
                onChange={handleChange}
              />
              <label htmlFor="interests-4">Community Outreach</label>
            </div>
          </div>
        </div>
        <div className="form-group">
          <label htmlFor="experience">Relevant Experience</label>
          <textarea
            id="experience"
            name="experience"
            value={formData.experience}
            onChange={handleChange}
            
          />
        </div>
        <div className="form-group">
          <button type="submit">Submit</button>
        </div>
      </form>
    </div>
  );
};

export default VolunteerSignupForm;

/* CSS Styles to add to styles.css */
/*
.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.required:after {
  content: " *";
  color: red;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 16px;
}

textarea {
  height: 100px;
}

.checkbox-group, .radio-group {
  margin-bottom: 10px;
}

.checkbox-item, .radio-item {
  margin-bottom: 5px;
}

button {
  background-color: #4CAF50;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  background-color: #45a049;
}
*/

Installation

How to setup React Volunteer Signup form

  1. 1

    Sign up to parrotforms.com

    Create your first form API endpoint then copy your endpoint.

    Screenshot Placeholder
  2. 2

    Copy the example code

    Use the copy button above to copy the entire code snippet.

    Screenshot Placeholder
  3. 3

    Paste the code and update the endpoint

    Replace the form API endpoint with the one you got in step 1.

    Screenshot Placeholder
  4. 4

    Collect submissions

    View and manage all form submissions in your parrotForms dashboard.

    Screenshot Placeholder

Need more advanced forms?

Create a free parrotForms account to access more templates, save your forms, and collect submissions.

Create a Free Account