Support Our Mission

Your donation helps transform lives through comprehensive reentry support

Make a Difference

Every contribution helps us provide housing, training, and support for individuals rebuilding their lives after incarceration.

One-Time Donation

Your Impact

$25

Provides a week of transportation for one participant

$100

Covers job interview clothing for 2 participants

$500

Funds one month of case management

$1000

Supports complete program enrollment for one person

The RISE Group is a registered 501(c)(3) nonprofit. All donations are tax-deductible.

// OpnForm embedded form submit handler document.getElementById('opnForm').addEventListener('submit', function(e) { e.preventDefault(); var form = e.target; var formData = new FormData(form); var payload = {}; formData.forEach(function(value, key) { payload[key] = value; }); fetch('/api/forms/contact-us-zko5a6/answer', { method: 'POST', headers: {'Content-Type': 'application/json'}, body: JSON.stringify(payload) }) .then(function(response) { return response.json(); }) .then(function(data) { document.getElementById('successMessage').style.display = 'block'; form.reset(); }) .catch(function(error) { console.error('Error:', error); alert('There was an error sending your message. Please try again.'); }); });