Live Testimonials Georgia 7th District · 2028

What Georgians
Are Saying

Real voices from real Georgians — neighbors, veterans, and community leaders who believe in Mohammad Khan and the Greater South.

2
Testimonials
40th
District · Georgia
100%
Verified Supporters
★★★★★
5-Star Rating
Community Voices
Growing Every Day
GW
Gerald Wingate
Retired U.S. Army
Owner, Marietta Home Comfort Service
📍 Marietta, Georgia
★★★★★

We all know a good man when we see one. Mohammad Khan is that man. His dedication to this community, his honesty, and his willingness to speak the truth when others stay silent — that's what we need in the Georgia statehouse. As a retired Army veteran, I know what leadership looks like, and Khan has it. He will fight for the working people of this district, for our veterans, and for the values that make the Greater South great. I am proud to support him.

FC
Fred Conyers
Retired OSHA Consultant
Workforce Safety Advocate
📍 Georgia
★★★★★

Education and skilled workforce development are the backbone of any strong economy — and Mohammad Khan gets that. He understands that not every young person needs a four-year university degree, and that vocational training and skilled trade programs are just as valuable. Khan will champion the kind of education reform and workforce investment that puts Georgians back to work with good-paying jobs and real skills. I've seen a lot of politicians talk about workforce issues. Khan is the first one I've met who truly understands it from the ground up — as a business owner who has lived it. He has my full support.

“We live in the greatest country on earth. There is no reason we cannot take care of working class people in our community. I will fight to ensure everyone gets a fair share and everyone is treated equally and fair.”

— Mohammad Khan · Candidate, Georgia 7th District

✍️
Share Your Voice

Submit Your Testimonial

Do you support Mohammad Khan and the Greater South? Share your story. Your testimonial will be reviewed and added to this page.

Your email will never be published or sold. Testimonials are reviewed before posting.

✓ Thank you! Your testimonial has been submitted and will be reviewed shortly.
Join the Movement

Ready to Support
Mohammad Khan?

Your voice matters. Volunteer, donate, or simply spread the word about the Greater South campaign.

Volunteer & Donate Back to Campaign

Stay Connected to the Campaign

Subscribe for updates, events, and growing community voices from the Greater South.

Mohammad Khan Campaign Logo

Mohammad Khan for State Representative · Fighting for the Greater South · 2028

Paid for by Friends and Supporters of Mohammad Khan and KhanForOffice Campaign.
www.khanforoffice.com

Navigation

Home Where I Stand About Me Volunteer & Get Involved Stay Connected

Quick Links

Privacy Policy Terms of Use & Disclaimer Volunteer Sponsors

Subscribe

© 2028 Mohammad Khan for State Representative. All rights reserved.
Not authorized by any candidate committee other than Mohammad Khan for State Representative.
Paid for by Friends and Supporters of Mohammad Khan and KhanForOffice Campaign.

function submitTestimonial() { const name = document.getElementById('t-name').value.trim(); const email = document.getElementById('t-email').value.trim(); const message = document.getElementById('t-message').value.trim(); if (!name || !email || !message) { alert('Please fill in your name, email, and testimonial before submitting.'); return; } const title = document.getElementById('t-title').value.trim() || 'Supporter'; const org = document.getElementById('t-org').value.trim(); const city = document.getElementById('t-city').value.trim() || 'Georgia'; const stars = parseInt(document.getElementById('t-stars').value); // Build initials const parts = name.split(' '); const initials = (parts[0][0] + (parts[1] ? parts[1][0] : '')).toUpperCase(); const colors = ['#15456F','#1C75BD','#E31919','#0a3d6b','#8b0000']; const color = colors[name.length % colors.length]; // Build card and prepend const starsStr = '★'.repeat(stars) + '☆'.repeat(5-stars); const orgLine = org ? `
${org}
` : ''; const card = document.createElement('div'); card.className = 'testimonial-card'; card.style.animationDelay = '0s'; card.innerHTML = `
${initials}
${name}
${title}
${orgLine}
📍 ${city}
${starsStr}

${message}

`; const container = document.getElementById('testimonials-container'); container.insertBefore(card, container.firstChild); // Update count const countEl = document.getElementById('count-testimonials'); countEl.textContent = parseInt(countEl.textContent) + 1; // Clear form & show success ['t-name','t-title','t-org','t-city','t-email','t-message'].forEach(id => { document.getElementById(id).value = ''; }); const success = document.getElementById('t-success'); success.style.display = 'block'; setTimeout(() => { success.style.display = 'none'; }, 6000); // Scroll to new card card.scrollIntoView({ behavior:'smooth', block:'center' }); }