// Legacy Gift Commitment Form - React Component (function() { 'use strict'; if (typeof React === 'undefined' || typeof ReactDOM === 'undefined') { console.error('React or ReactDOM not loaded!'); return; } const { useState, useEffect } = React; function LegacyGiftForm() { // State for dynamic names const [names, setNames] = useState(['']); // Update hidden realname field whenever names change useEffect(() => { const realnameField = document.querySelector('input[name="realname"]'); if (realnameField) { const formattedNames = names .filter(name => name.trim() !== '') .map((name, index) => `${index + 1}. ${name}`) .join(', '); realnameField.value = formattedNames; } }, [names]); // State for gift type sections const [giftTypes, setGiftTypes] = useState({ intendedBequest: false, charitableTrust: false, iraRetirement: false, lifeInsurance: false }); // State for anonymous checkbox const [isAnonymous, setIsAnonymous] = useState(false); // Name field handlers const addName = () => { if (names.length < 5) { setNames([...names, '']); } }; const removeName = (index) => { if (names.length > 1) { setNames(names.filter((_, i) => i !== index)); } }; const updateName = (index, value) => { const updated = [...names]; updated[index] = value; setNames(updated); }; // Gift type toggle handler const toggleGiftType = (type) => { setGiftTypes({ ...giftTypes, [type]: !giftTypes[type] }); }; return (
I/we have included the University of West Georgia in my/our estate plans by naming the University of West Georgia Foundation ("UWGF") as beneficiary of my/our assets.
Note: This form and any additional documentation of your plans should be mailed or emailed to the University of West Georgia Foundation, 1601 Maple St., Carrollton, GA 30118 or sent to development@westga.edu.
Please note: This form is submitted securely via HTTPS, but email is not an encrypted medium. For your protection, please do not include sensitive financial details such as social security numbers, account numbers, or policy numbers. We'll work with you directly to gather those details through secure channels when needed.