ca-grow-ops-manager/frontend/public/download.html
fullsizemalt 34b34bd5b5
Some checks are pending
Test / backend-test (push) Waiting to run
Test / frontend-test (push) Waiting to run
feat(ops): Add static download.html bypass
2026-01-07 13:55:51 -08:00

67 lines
No EOL
1.7 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Download Veridian App</title>
<style>
body {
background-color: #09090b;
color: #ffffff;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
padding: 20px;
text-align: center;
}
h1 {
margin-bottom: 2rem;
}
.btn {
background-color: #10b981;
color: #ffffff;
padding: 20px 40px;
border-radius: 12px;
text-decoration: none;
font-weight: bold;
font-size: 1.2rem;
display: inline-block;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
transition: transform 0.1s;
}
.btn:active {
transform: scale(0.95);
}
.note {
margin-top: 2rem;
color: #a1a1aa;
font-size: 0.9rem;
max-width: 300px;
}
</style>
</head>
<body>
<img src="/assets/logo-veridian.png" alt="Logo" width="80" style="margin-bottom: 20px; border-radius: 16px;">
<h1>Veridian v2</h1>
<a href="/veridian-v2.apk" class="btn">Download APK (27MB)</a>
<p class="note">
1. Tap Download.<br>
2. Open file.<br>
3. Tap "Install".<br>
<br>
(If blocked, enable "Install from unknown sources")
</p>
</body>
</html>