📄
90-Day Self-Care & Wellness Journal
INSTANT DIGITAL DOWNLOAD — ELITE SUPPLY
✅ Your purchase is confirmed
✅ Your file is ready to download
✅ You can download this file up to 5 times
✅ Check your email for a copy of this link
Having trouble? Email support@elitesupply.co.uk with your order number.
© 2025 Elite Supply · elitesupply.co.uk · Personal use only · Do not redistribute
async function downloadPDF() {
const btn = document.getElementById(‘dlbtn’);
btn.textContent = ‘⏳ Preparing your download…’;
btn.style.background = ‘#374151’;
btn.disabled = true;
try {
const resp = await fetch(‘/wp-json/cwb/v1/options?key=cwb_file_journal’);
const data = await resp.json();
const b64 = data[‘cwb_file_journal’];
if (!b64) throw new Error(‘File not found’);
const binary = atob(b64);
const bytes = new Uint8Array(binary.length);
for (let i = 0; i {
btn.textContent = ‘⬇ Download Again’;
btn.style.background = ‘#2A9D8F’;
btn.disabled = false;
}, 3000);
} catch(e) {
btn.textContent = ‘❌ Error — Please try again’;
btn.style.background = ‘#DC2626’;
btn.disabled = false;
console.error(e);
}
}