Space Travel Log Generator

Captain's Log Generator

United Space Federation // Official Record Keeping Tool

Recent Entries
No logs recorded. Initialize entry sequence above.

Vessel Registry

System Configuration

Customize the available sectors in the dashboard dropdown.

UNITED SPACE FEDERATION

VESSEL: ${ship} REGISTRY: ${reg}
COMMANDING OFFICER: ${capt} MISSION: ${mission}

RECORDED ENTRIES

${logsHtml}
END OF TRANSMISSION // DIGITAL SIGNATURE VERIFIED
`; const element = document.createElement('div'); element.innerHTML = content; const opt = { margin: 0.5, filename: `Log_${ship.replace(/\s+/g, '_')}_${new Date().toISOString().slice(0,10)}.pdf`, image: { type: 'jpeg', quality: 0.98 }, html2canvas: { scale: 2 }, jsPDF: { unit: 'in', format: 'letter', orientation: 'portrait' } }; if (window.html2pdf) { html2pdf().set(opt).from(element).save(); } else { alert("Subspace communication arrays (PDF Lib) are aligning. Please try again momentarily."); } }
Scroll to Top