Envíanos tu CV

Únete a nuestro equipo



¿Te gustaría formar parte de la familia del Hotel Rural Juncalillo?
Siempre nos alegra conocer a personas que comparten nuestra pasión por la hospitalidad, la naturaleza y la auténtica cultura canaria. Si tienes vocación por la hostelería, monitor de campamento, o de limpieza, esta es tu oportunidad.
Arrastra tu currículum aquí o haz clic para seleccionarlo


If you see this, leave this form field blank.
Estoy de acuerdo con la política de privacidad

Los datos recogidos en este formulario son procesados por Hostel Restaurante Juncalillo y Amenitiz Solutions para gestionar las informaciónes de solicitud de contacto en el sitio web https://www.hoteljuncalillo.com de acuerdo con nuestra Política de Privacidad.

emailjs.init("TU_PUBLIC_KEY"); const dropzone = document.getElementById("dropzone"); const fileInput = document.getElementById("file-input"); const fileNameDiv = document.getElementById("file-name"); // Clic directo sobre dropzone abre selector dropzone.addEventListener("click", () => { fileInput.click(); }); // Drag & Drop dropzone.addEventListener("dragover", (e) => { e.preventDefault(); dropzone.classList.add("dragover"); }); dropzone.addEventListener("dragleave", () => dropzone.classList.remove("dragover")); dropzone.addEventListener("drop", (e) => { e.preventDefault(); dropzone.classList.remove("dragover"); const file = e.dataTransfer.files[0]; if (file && file.type === "application/pdf") { fileInput.files = e.dataTransfer.files; fileNameDiv.textContent = "Archivo seleccionado: " + file.name; } else { fileInput.value = ""; fileNameDiv.textContent = ""; alert("Solo se permiten archivos PDF."); } }); // Detectar selección manual de archivo fileInput.addEventListener("change", () => { const file = fileInput.files[0]; if (file && file.type === "application/pdf") { fileNameDiv.textContent = "Archivo seleccionado: " + file.name; } else { fileInput.value = ""; fileNameDiv.textContent = ""; alert("Solo se permiten archivos PDF."); } }); // Enviar formulario document.getElementById("contact-form").addEventListener("submit", function(e) { e.preventDefault(); if (!fileInput.files.length) { alert("Por favor selecciona un archivo PDF."); return; } emailjs.sendForm("TU_SERVICE_ID", "TU_TEMPLATE_ID", this) .then(() => { alert("Mensaje enviado con éxito"); this.reset(); fileNameDiv.textContent = ""; }) .catch((err) => { console.error(err); alert("Error al enviar el formulario."); }); });