@@ -1383,14 +1385,18 @@ textarea.notes-ta:focus{border-color:#f97316}
Driver's License Verified
- = $stepLicense?'Verified — on file':($cancelled?'N/A':'Verify at pickup') ?>
+ = $stepLicense?'Verified at pickup':($cancelled?'N/A':($licFile?'Doc submitted — verify at pickup':'Verify at pickup')) ?>
-
+
+
+
📄 View Doc ↗
+
- = $stepLicense?'✓ License Verified':'Mark License Verified' ?>
+ = $stepLicense?'✓ Verified at Pickup':'Mark Verified at Pickup' ?>
+
📎 Upload Link
@@ -1665,13 +1671,9 @@ function saveNotes(id) {
}
// ── Send reminder email ───────────────────────────────────────────────────────
-function copyUploadLink(ref, type, btn) {
+function openUploadLink(ref, type) {
const url = 'https://parkerslingshot.epictravelexpeditions.com/upload-docs.php?ref=' + encodeURIComponent(ref) + '&type=' + type;
- navigator.clipboard.writeText(url).then(() => {
- const orig = btn.textContent;
- btn.textContent = '✓ Copied!';
- setTimeout(() => btn.textContent = orig, 2000);
- }).catch(() => prompt('Copy this link:', url));
+ window.open(url, '_blank');
}
function resendConfirmation(id, btn) {