fix: login screen — remove Download Android app (APK) link and About Pediatric Clinical Tools block
This commit is contained in:
parent
e1f1a58917
commit
1267d1b7fc
2 changed files with 0 additions and 23 deletions
|
|
@ -138,20 +138,6 @@
|
|||
<span>HIPAA-compliant AI providers available with BAA. Check with your institution's guidelines before use. Not intended for production clinical use without proper authorization.</span>
|
||||
</div>
|
||||
|
||||
<div id="apk-download-link" style="text-align:center;margin:14px 0 0;font-size:13px;">
|
||||
<a href="https://git.danvics.com/danvics/pediatric-ai-scribe-v3/releases/latest" target="_blank" rel="noopener" style="color:#2563eb;text-decoration:none;font-weight:500;">
|
||||
<i class="fas fa-mobile-screen"></i> Download Android app (APK)
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<details style="margin:16px 0 0;text-align:left;max-width:480px;margin-left:auto;margin-right:auto;">
|
||||
<summary style="cursor:pointer;font-size:13px;font-weight:600;color:#64748b;text-align:center;">About Pediatric Clinical Tools</summary>
|
||||
<div style="padding:12px 0;font-size:12px;color:#64748b;line-height:1.7;">
|
||||
<p style="margin:0 0 8px;">AI-powered clinical documentation for pediatric medicine. Generate HPIs, SOAP notes, hospital courses, chart reviews, well/sick visit notes, and developmental milestone assessments from voice or text.</p>
|
||||
<p style="margin:0 0 8px;">Includes pediatric calculators (BP percentile, BMI, growth charts, bilirubin nomograms, vital signs), Learning Hub with quizzes and AI-generated content, and comprehensive security (2FA, SSO, session management, audit logging).</p>
|
||||
<p style="margin:0;">All AI providers support BAA for HIPAA compliance. Audio and encounters auto-expire. AI learns from your edits over time.</p>
|
||||
</div>
|
||||
</details>
|
||||
</div>
|
||||
<footer class="app-footer">
|
||||
Committed to healthcare equity — always consult a qualified healthcare professional for medical advice.
|
||||
|
|
|
|||
|
|
@ -54,15 +54,6 @@ document.addEventListener('DOMContentLoaded', function() {
|
|||
}
|
||||
window.IS_NATIVE_APP = isNativeApp();
|
||||
|
||||
// Hide elements that only make sense for the web audience (e.g. the
|
||||
// "Download Android APK" link on the login page — you're already in
|
||||
// the app). Add more element IDs here as other web-only UI appears.
|
||||
if (isNativeApp()) {
|
||||
['apk-download-link'].forEach(function(id) {
|
||||
var el = document.getElementById(id);
|
||||
if (el) el.style.display = 'none';
|
||||
});
|
||||
}
|
||||
|
||||
// ── Biometric login (Capacitor only) ────────────────────────────────
|
||||
// Uses capacitor-native-biometric to gate stored credentials behind
|
||||
|
|
|
|||
Loading…
Reference in a new issue