resume from pdf

vibed with co-pilot
This commit is contained in:
PaulsRepo
2025-07-10 16:12:02 +01:00
parent b306bc0ac4
commit 652cd323e7
3 changed files with 181 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
function filterExp(type) {
const entries = document.querySelectorAll(".entry");
entries.forEach(entry => {
if (type === "all") {
entry.style.display = "flex";
} else {
entry.style.display = entry.classList.contains(type) ? "flex" : "none";
}
});
}
// Optional: handle form honeypot logic on submission
document.getElementById("contactForm")?.addEventListener("submit", function (e) {
const companyField = this.querySelector("input[name='company']");
if (companyField.value) {
e.preventDefault(); // Detected spam
alert("Spam detected. Submission blocked.");
}
});