React Product Return Form Generator

Process product returns and exchanges

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 ProductReturnForm = () => {
  // State for form data
  const [formData, setFormData] = useState({
    name: '',
    email: '',
    orderNumber: '',
    productName: '',
    returnReason: '',
    action: '',
    comments: '',
  });

  // 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="orderNumber" className="required">Order Number</label>
          <input
            type="text"
            id="orderNumber"
            name="orderNumber"
            value={formData.orderNumber}
            onChange={handleChange}
            required
          />
        </div>
        <div className="form-group">
          <label htmlFor="productName" className="required">Product Name</label>
          <input
            type="text"
            id="productName"
            name="productName"
            value={formData.productName}
            onChange={handleChange}
            required
          />
        </div>
        <div className="form-group">
          <label htmlFor="returnReason" className="required">Reason for Return</label>
          <div className="radio-group">
            <div className="radio-item">
              <input
                type="radio"
                id="returnReason-0"
                name="returnReason"
                value="Wrong Item"
                checked={formData.returnReason === 'Wrong Item'}
                onChange={handleChange}
                required
              />
              <label htmlFor="returnReason-0">Wrong Item</label>
            </div>
            <div className="radio-item">
              <input
                type="radio"
                id="returnReason-1"
                name="returnReason"
                value="Defective"
                checked={formData.returnReason === 'Defective'}
                onChange={handleChange}
                
              />
              <label htmlFor="returnReason-1">Defective</label>
            </div>
            <div className="radio-item">
              <input
                type="radio"
                id="returnReason-2"
                name="returnReason"
                value="Not as Described"
                checked={formData.returnReason === 'Not as Described'}
                onChange={handleChange}
                
              />
              <label htmlFor="returnReason-2">Not as Described</label>
            </div>
            <div className="radio-item">
              <input
                type="radio"
                id="returnReason-3"
                name="returnReason"
                value="Changed Mind"
                checked={formData.returnReason === 'Changed Mind'}
                onChange={handleChange}
                
              />
              <label htmlFor="returnReason-3">Changed Mind</label>
            </div>
            <div className="radio-item">
              <input
                type="radio"
                id="returnReason-4"
                name="returnReason"
                value="Other"
                checked={formData.returnReason === 'Other'}
                onChange={handleChange}
                
              />
              <label htmlFor="returnReason-4">Other</label>
            </div>
          </div>
        </div>
        <div className="form-group">
          <label htmlFor="action" className="required">Preferred Action</label>
          <div className="radio-group">
            <div className="radio-item">
              <input
                type="radio"
                id="action-0"
                name="action"
                value="Refund"
                checked={formData.action === 'Refund'}
                onChange={handleChange}
                required
              />
              <label htmlFor="action-0">Refund</label>
            </div>
            <div className="radio-item">
              <input
                type="radio"
                id="action-1"
                name="action"
                value="Exchange"
                checked={formData.action === 'Exchange'}
                onChange={handleChange}
                
              />
              <label htmlFor="action-1">Exchange</label>
            </div>
            <div className="radio-item">
              <input
                type="radio"
                id="action-2"
                name="action"
                value="Store Credit"
                checked={formData.action === 'Store Credit'}
                onChange={handleChange}
                
              />
              <label htmlFor="action-2">Store Credit</label>
            </div>
          </div>
        </div>
        <div className="form-group">
          <label htmlFor="comments">Additional Comments</label>
          <textarea
            id="comments"
            name="comments"
            value={formData.comments}
            onChange={handleChange}
            
          />
        </div>
        <div className="form-group">
          <button type="submit">Submit</button>
        </div>
      </form>
    </div>
  );
};

export default ProductReturnForm;

/* 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 Product Return 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