Upload your CV

document.getElementById('sftp-form').addEventListener('submit', function(event) { event.preventDefault(); const formData = new FormData(this); fetch('sftp://home357714158.1and1-data.host/sftp-upload.html', { method: 'POST', body: formData, headers: { 'Authorization': 'Basic ' + btoa('acc174601990:pBx.T4uU@@') } }).then(response => { if (response.ok) { alert('CV uploaded successfully!'); } else { alert('Failed to upload CV.'); } }).catch(error => { console.error('Error:', error); alert('Failed to upload CV.'); }); });