Remove API Keys info box from upload form
- Removed the blue info box about .env configuration - Cleaner upload interface - API keys handled server-side via .env file - Less clutter on main page 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
fcd329ada8
commit
3d51bf915f
1 changed files with 2 additions and 10 deletions
12
index.html
12
index.html
|
|
@ -576,23 +576,15 @@
|
|||
|
||||
<div class="api-config">
|
||||
<h3 style="margin-bottom: 15px;">Check Options</h3>
|
||||
<div class="form-group" style="display: flex; align-items: center; gap: 10px; margin-bottom: 20px;">
|
||||
<div class="form-group" style="display: flex; align-items: center; gap: 10px; margin-bottom: 10px;">
|
||||
<input type="checkbox" id="quickMode" style="width: auto; height: 18px; cursor: pointer;">
|
||||
<label for="quickMode" style="cursor: pointer; margin: 0; font-weight: 600;">
|
||||
⚡ Quick Mode (Skip AI analysis, OCR, and color contrast)
|
||||
</label>
|
||||
</div>
|
||||
<div class="help-text" style="margin-top: -15px; margin-bottom: 20px;">
|
||||
<div class="help-text">
|
||||
Quick mode runs basic checks only - great for initial scans. Completes in ~10 seconds vs ~2 minutes.
|
||||
</div>
|
||||
|
||||
<div style="background: #f0f9ff; border-left: 3px solid #3b82f6; padding: 15px; border-radius: 6px; margin-top: 20px;">
|
||||
<div style="font-weight: 600; margin-bottom: 5px;">🔑 API Keys</div>
|
||||
<div style="font-size: 14px; color: #4a4a4a;">
|
||||
API keys are configured in the <code style="background: white; padding: 2px 6px; border-radius: 3px;">.env</code> file on the server.
|
||||
<br>Edit <code style="background: white; padding: 2px 6px; border-radius: 3px;">.env</code> to add your Anthropic and Google API keys.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="progress-container" id="progressContainer">
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue