Files
boc/landvex-site/deploy-warning.html
T
Bernt 48ea61cdcc docs: add quixzoom-auth-core product to AAMOS
- Product documentation in docs/products/
- Updated MEMORY.md with product info
- quiXzoom Auth Core as AAMOS Identity product
2026-07-14 09:58:53 +00:00

22 lines
1.4 KiB
HTML

<div id="deploy-warning" style="position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.7);z-index:99999;display:flex;align-items:center;justify-content:center;padding:20px;">
<div style="background:white;border-radius:16px;padding:32px;max-width:400px;width:100%;text-align:center;box-shadow:0 20px 60px rgba(0,0,0,0.3);">
<div style="font-size:48px;margin-bottom:16px">🚀</div>
<h2 style="font-size:20px;font-weight:800;margin-bottom:12px;color:#1a1a2e">Ny version deployad!</h2>
<p style="color:#6E6E73;margin-bottom:24px;line-height:1.5">
quiXzoom har uppdaterats med nya funktioner.<br>
<strong>Version 2.0</strong> — Fortsätt i appen-dialog
</p>
<button onclick="document.getElementById('deploy-warning').remove();localStorage.setItem('qz-deploy-v2-seen','1')"
style="background:#10b981;color:white;padding:14px 28px;border-radius:10px;border:none;font-weight:700;font-size:16px;cursor:pointer;width:100%">
Jag förstår, fortsätt
</button>
<p style="font-size:12px;color:#86868B;margin-top:16px">
Commit: <span id="deploy-commit"></span>
</p>
</div>
</div>
<script>
if(localStorage.getItem('qz-deploy-v2-seen')) document.getElementById('deploy-warning').remove();
document.getElementById('deploy-commit').textContent = location.search.match(/c=([^&]*)/)?.[1] || 'unknown';
</script>