אימון עסקי

שאלון לחצות הרף

גלו איך לחצות את הרף בעסק ובחיים - תוכנית ליווי מותאמת אישית

איך זה עובד:
מלאו את השאלון, קבלו ציון מיידי והמלצות מותאמות אישית.
לפרטים: [email protected] | [email protected]
פרטיות מלאה – המידע מאובטח ולא יועבר לצד שלישי.
הטופס נשלח בהצלחה!
> '); printWindow.document.close(); printWindow.print(); } // העתקה ללוח function copyReportToClipboard() { const report = generateFullReport(); if (navigator.clipboard) { navigator.clipboard.writeText(report).then(() => { alert('הדוח הועתק ללוח! אתה יכול להדביק אותו במסמך Word או Google Docs ולשמור כ-PDF'); }); } else { // גיבוי לדפדפנים ישנים const textArea = document.createElement('textarea'); textArea.value = report; document.body.appendChild(textArea); textArea.select(); document.execCommand('copy'); document.body.removeChild(textArea); alert('הדוח הועתק ללוח! אתה יכול להדביק אותו במסמך Word או Google Docs ולשמור כ-PDF'); } } // טיפול בשליחת הטופס document.getElementById('diagnosticForm').addEventListener('submit', function(e) { e.preventDefault(); // בדיקה שכל השאלות נענו if (answeredQuestions < totalQuestions) { alert(`אנא ענה על כל השאלות. נענו ${answeredQuestions} מתוך ${totalQuestions} שאלות.`); return; } // בדיקת שדות חובה const requiredFields = ['name', 'company', 'email']; for (let field of requiredFields) { if (!document.getElementById(field).value.trim()) { alert('אנא מלא את כל השדות החובה (מסומנים ב-*)'); document.getElementById(field).focus(); return; } } // חישוב ותצוגת תוצאות calculateAndShowResults(); // הוספת המידע לשדות נסתרים const percentage = Math.round((currentScore / 50) * 100); document.getElementById('total_score').value = currentScore; document.getElementById('percentage_score').value = percentage; document.getElementById('report_summary').value = generateFullReport(); // שליחת הטופס ל-Formspree const formData = new FormData(this); fetch(this.action, { method: 'POST', body: formData, headers: { 'Accept': 'application/json' } }).then(response => { if (response.ok) { document.getElementById('successMessage').style.display = 'block'; document.getElementById('successMessage').innerHTML = '✅ הדוח נשלח בהצלחה! נחזור אליכם בהקדם לגבי תוכנית הליווי.'; } else { throw new Error('Network response was not ok'); } }).catch(error => { alert('⚠️ אירעה שגיאה בשליחה. אנא שלח את התוצאות ידנית ל: [email protected] או [email protected]'); }); });