From 52c50d7aa1ff49cb464c37cd25c7528ba7854303 Mon Sep 17 00:00:00 2001 From: Hermes Agent Date: Fri, 7 Aug 2026 15:00:59 +0000 Subject: [PATCH] Add extra qualifications checkboxes (Agents, LLM, n8n, Shopify, ...) --- index.html | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) 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 };