...

Become a Supplier Partner!

Increase Your Revenue with Ridesharks

Requirements

  • Valid Operating License
  • Minimum Liability Insurance up to 1M

Standards

  • All Chauffeurs must hold a valid private hire badge.
  • Condition & Cleanliness: Vehicles must be maintained in excellent condition, free from damage, and smoke-free.
  • Regulatory Compliance: All vehicles should comply fully with local safety and transportation regulations.
  • Age Limit: Vehicles should not be older than 5 years to ensure modern safety features and a quality experience.
// Select all file inputs with the class 'elementor-upload-field' const fileInputs = document.querySelectorAll(".elementor-upload-field"); fileInputs.forEach(fileInput => { fileInput.addEventListener("change", function() { if (fileInput.files.length > 0) { // Display a success message in the input's title attribute fileInput.setAttribute("title", "Document Uploaded Successfully!"); } else { // Clear the message if no file is selected fileInput.setAttribute("title", ""); } }); });