Current Path :
/
home
/
zrcdevco
/
public_html
/
medrio
/
Or
Select Your Path :
Upload File :
New :
File
Dir
/home/zrcdevco/public_html/medrio/fileupload.html
<!DOCTYPE html> <script src="https://code.jquery.com/jquery-3.7.0.min.js" integrity="sha256-2Pmvv0kuTBOenSvLm6bvfBSSHrUJ+3A7x6P5Ebd07/g=" crossorigin="anonymous"></script> <script> $(document).ready(function() { $('input:file').change( function() { if($(this).val()) { $('input:submit').attr('disabled', false); } else { $('input:submit').attr('disabled', true); } }); }); </script> <body> <h1>Medrio Clinical Leader => HubSpot</h1> <form action="excelupload_newfields.php" method="post" enctype="multipart/form-data"> <p>Select Excel file to upload to HubSpot:</p> <input class="input" type="file" name="fileToUpload" id="fileToUpload"> </br></br></br><input disabled="disabled" class="button" type="submit" value="Upload Excel" onclick="this.disabled=true;this.value='Submitting...'; this.form.submit();"> </form> </body> </html>