top of page
A+_edited_edited.jpg

Project Name

This is your Project description. Provide a brief summary to help visitors understand the context and background of your work. Click on "Edit Text" or double click on the text box to start.

Project Name

This is your Project description. A brief summary can help visitors understand the context of your work. Click on "Edit Text" or double click on the text box to start.

Project Name

This is your Project description. Provide a brief summary to help visitors understand the context and background of your work. Click on "Edit Text" or double click on the text box to start.

Project Name

This is your Project description. Click on "Edit Text" or double click on the text box to start.

Project Name

This is your Project description. Provide a brief summary to help visitors understand the context and background of your work. Click on "Edit Text" or double click on the text box to start.

Project Name

This is your Project description. A brief summary can help visitors understand the context of your work. Click on "Edit Text" or double click on the text box to start.

Follow Us:
  • X
  • Instagram
  • White Facebook Icon

©2024 BRAHMA MEDIA LLC. Powered by Gozoek.com

Never miss an update
bottom of page
// Import the necessary Wix modules import wixData from 'wix-data'; import wixUsers from 'wix-users'; $w.onReady(function () { // Check if the current user is an admin wixUsers.currentUser.getRoles() .then((roles) => { const isAdmin = roles.some(role => role.name === "admin"); if (!isAdmin) { $w("#submitButton").disable(); $w("#errorMessage").text = "You do not have permission to add athletes."; } }); // Submit button click event with validation $w("#submitButton").onClick(() => { const name = $w("#nameInput").value; const age = Number($w("#ageInput").value); const sport = $w("#sportInput").value; const statistics = $w("#statisticsInput").value; const achievements = $w("#achievementsInput").value; const mediaCoverageLinks = $w("#mediaCoverageLinksInput").value.split(','); const photos = $w("#photosInput").value; const socialMediaLinks = $w("#socialMediaLinksInput").value.split(','); // Validation check if (!name || !age || !sport || !statistics || !achievements || mediaCoverageLinks.length === 0 || !photos || socialMediaLinks.length === 0) { $w("#errorMessage").text = "Please fill in all required fields."; return; } const newAthlete = { name: name, age: age, sport: sport, statistics: statistics, achievements: achievements, mediaCoverageLinks: mediaCoverageLinks, photos: photos, socialMediaLinks: socialMediaLinks }; wixData.insert("Athletes", newAthlete) .then(() => { $w("#successMessage").text = "Athlete added successfully!"; $w("#errorMessage").text = ""; // Clear error message }) .catch((err) => { console.error(err); $w("#errorMessage").text = "There was an error adding the athlete."; }); }); });