diff --git a/index.html b/index.html index b4ebcb6..6dc7a4b 100644 --- a/index.html +++ b/index.html @@ -538,6 +538,25 @@ + +
+ +
+ + + + + + + + + + + + +
+
+
@@ -604,6 +623,7 @@ // Collect checkboxes const skills = Array.from(document.querySelectorAll('input[name="skills"]:checked')).map(cb => cb.value); const modules = Array.from(document.querySelectorAll('input[name="modules"]:checked')).map(cb => cb.value); + const qualifications = Array.from(document.querySelectorAll('input[name="qualifications"]:checked')).map(cb => cb.value); const languages = Array.from(document.querySelectorAll('input[name="languages"]:checked')).map(cb => cb.value); const formData = { @@ -619,6 +639,7 @@ certified: document.getElementById('certified').value, skills: skills, modules: modules, + qualifications: qualifications, languages: languages };