top of page

ZMA COMBAT + FITNESS

Find Your Strength

17883482759049079_edited.jpg
Home: Welcome

ABOUT US

Join Our Community

At ZMA Combat + Fitness, we believe in only the highest standards of physical fitness training. We specialize in Muay Thai, kickboxing and MMA classes as well as general fitness for all ages and skill levels. Since being founded in 2016, our staff members have been actively enriching the lives of our members and creating a community of like-minded people who love being healthy, strong, and more in touch with their bodies. Getting you in shape is our goal. Sign up for your free trial today!

WechatIMG50.jpeg
Home: About
Home: Bookings Widget
Kids' Inter-Club Competition

Kids' Inter-Club Competition

All Categories
All Categories

KIDS KICKBOXING

KIDS KICKBOXING

Home: Videos
Home: Social

CONTACT US

  • Instagram

Thanks for submitting!

Home: Contact
bottom of page
import wixData from 'wix-data'; export function button1_click(event) { let file = $w("#uploadButton").value[0]; let url = await uploadFile(file); let memberId = wixUsers.currentUser.id; wixData.get("Members", memberId) .then((member) => { member.profilePhoto = url; return member.save(); }) .catch((err) => { console.log(err); }); } function uploadFile(file) { return new Promise((resolve, reject) => { let name = file.name; let type = file.type; let size = file.size; wixData.getUploadUrl() .then((uploadUrl) => { return fetch(uploadUrl, { method: "PUT", headers: { "Content-Type": type, "Content-Length": size }, body: file }); }) .then((response) => { if (response.ok) { resolve(name); } else { reject(response.statusText); } }) .catch((err) => { reject(err); }); }); }