See the difference quality craftsmanship makes. Browse our gallery to view completed roof repairs and replacements across Central Arkansas. Every project reflects our commitment to durable materials, expert installation, and beautiful results that enhance and protect your home for years to come.
function webLeadFormSubmit(event) {
event.preventDefault();
document.getElementsByClassName('webLeadForm__submit')[0].disabled = true;
const leadData = new FormData(event.target);
const fetchPromise = fetch('https://leads.acculynx.com/api/leads/submit-new-lead?formID=1de68701-e45e-43e5-a3c5-31b5adfb42dc', { method:'post', mode:'no-cors', body: leadData});
fetchPromise.then(response => {
console.log('WebLeadForm Submit Success');
console.log(response);
document.getElementById('webLeadFormElem').style.visibility = 'hidden';
document.getElementById('webLeadFormMessageElem').style.display = 'flex';
})
.catch(error => {
console.log('WebLeadForm Submit Error: ' + error);
document.getElementsByClassName('webLeadForm__submit')[0].disabled = false;
});
return false;
}