feat(ops): Add static download.html bypass
This commit is contained in:
parent
de632bd425
commit
34b34bd5b5
1 changed files with 67 additions and 0 deletions
67
frontend/public/download.html
Normal file
67
frontend/public/download.html
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
<!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>
|
||||
Loading…
Add table
Reference in a new issue