Experiencia
${expList.map(e=>`- ${e}
`).join('')}
Educación
${eduList.map(e=>`- ${e}
`).join('')}
Habilidades
${skillsList.map(s=>`- ${s}
`).join('')}
`;
}
btnGenerate.addEventListener('click', function(){
renderCV();
successMessage.style.display = 'block';
btnDownload.style.display = 'inline-block';
});
inputPhoto.addEventListener('change', function(){
const file = this.files[0];
if(!file) return;
const reader = new FileReader();
reader.onload = e => photoData = e.target.result;
reader.readAsDataURL(file);
});
btnDownload.addEventListener('click', function(){
html2pdf().set({
margin:5,
filename:'mi-cv.pdf',
image:{type:'jpeg',quality:0.98},
html2canvas:{scale:2},
jsPDF:{unit:'mm',format:'a4',orientation:'portrait'}
}).from(container).save();
redirectMessage.style.display = 'block';
setTimeout(function(){
window.location.href = 'https://empleocontab.com/category/trabajos-actualizados/';
}, 3000);
});
})();