You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: public/index.html
+117-3Lines changed: 117 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -615,6 +615,25 @@
615
615
.main { height: auto; overflow: visible; }
616
616
.g3, .g4 { grid-template-columns:1fr1fr; }
617
617
}
618
+
619
+
/* ═══ SECURITY MODAL ═══ */
620
+
#security-modal {
621
+
animation: fadeIn 0.2s ease-out;
622
+
}
623
+
624
+
@keyframes fadeIn {
625
+
from { opacity:0; }
626
+
to { opacity:1; }
627
+
}
628
+
629
+
#security-modal>div {
630
+
animation: slideUp 0.3s ease-out;
631
+
}
632
+
633
+
@keyframes slideUp {
634
+
from { transform:translateY(20px); opacity:0; }
635
+
to { transform:translateY(0); opacity:1; }
636
+
}
618
637
</style>
619
638
</head>
620
639
<body>
@@ -756,14 +775,15 @@ <h1>StellarMind</h1>
756
775
<divclass="card-h"><h2>🧠 Claude AI Configuration</h2><spanclass="tag" id="key-status-tag">Checking...</span></div>
757
776
<divclass="card-b">
758
777
<divid="api-key-config">
759
-
<pclass="lbl" style="margin-bottom:10px;">Configure your Anthropic API key to enable real AI responses (starts with sk-ant-). If not set, the system uses high-quality fallback agents.</p>
778
+
<pclass="lbl" style="margin-bottom:10px;color:var(--text-secondary);">Configure your Anthropic API key to enable real AI responses (starts with sk-ant-). Your key is stored in server memory only and never persisted.</p>
<pclass="sc-sub" style="margin-top:8px;color:var(--text-muted);font-size:10px;">💡 Tip: Your key is ephemeral and cleared when the server restarts. For production, use environment variables.</p>
alert('API Key updated successfully! Agents will now use your key.');
1390
+
alert('✅ API Key updated successfully! Agents will now use your key.\n\n⚠️ Remember: Your key is stored in server memory only and will be cleared when the server restarts.');
0 commit comments