מחירון סלון יופי

מחירון סלון יופי

שירות מחיר
תספורת נשים ₪150
תספורת גברים ₪100
החלקת שיער ₪300
גידול ריסים ₪180
עיצוב גבות ₪80
מניקור פדיקור ₪120
הסרת שיער בשעווה ₪100
בחר תור // פונקציה להצגת השלב הבא function saveAndProceed(step) { const selectedOption = document.querySelector('input[name="selection"]:checked'); const errorMessage = document.getElementById('error-message'); if (selectedOption) { errorMessage.style.display = 'none'; localStorage.setItem(step, selectedOption.value); updateSelectionDisplay(step); showNextStep(step); } else { errorMessage.style.display = 'block'; } } // עדכון תצוגת הבחירה function updateSelectionDisplay(step) { const barber = localStorage.getItem('choose-barber'); const service = localStorage.getItem('choose-service'); const time = localStorage.getItem('choose-time'); if (barber) document.getElementById('selected-barber').innerText = barber; if (service) document.getElementById('selected-service').innerText = service; if (time) document.getElementById('selected-time').innerText = time; } // הצגת השלב הבא function showNextStep(currentStep) { const currentStepElement = document.getElementById(currentStep); currentStepElement.classList.remove('active'); const nextStep = document.getElementById(getNextStep(currentStep)); nextStep.classList.add('active'); } // קביעת השלב הבא function getNextStep(currentStep) { const steps = ['choose-barber', 'choose-service', 'choose-time']; const currentIndex = steps.indexOf(currentStep); return steps[currentIndex + 1]; } // שליחת הנתונים ל-API function sendToAPI() { const barber = localStorage.getItem('choose-barber'); const service = localStorage.getItem('choose-service'); const time = localStorage.getItem('choose-time'); const data = { barber, service, time }; fetch('https://your-server.com/api/submit-appointment', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(data) }) .then(response => response.json()) .then(result => { if (result.success) { alert('הזמנתך נשמרה בהצלחה!'); } else { alert('שגיאה בשמירת ההזמנה. נסה שוב.'); } }) .catch(error => console.error('Error:', error)); }

בחר ספר

בחר שירות

בחר שעה

אנא בחר אופציה כדי להמשיך.

הבחירות שלך:

ספר: לא נבחר

שירות: לא נבחר

שעה: לא נבחר

מחיר Author Year ISBN
Neuromancer William Gibson 1984 0-441-56956-0
Snow Crash Neal Stephenson 1992 0-553-08853-X
Software Rudy Rucker 1982 0-441-77408-3