- Implement full web interface with Go html/template server - Add GX component library (buttons, dialogs, tables, forms, etc.) - Create scene/performer/studio/movie detail and listing pages - Add Adult Empire scraper for additional metadata sources - Implement movie support with database schema - Add import and sync services for data management - Include comprehensive API and frontend documentation - Add custom color scheme and responsive layout 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
44 lines
1.1 KiB
HTML
44 lines
1.1 KiB
HTML
<div style="padding: 2rem; background:#0A0A0C; max-width: 500px;">
|
|
|
|
<!-- Basic input -->
|
|
<div class="gx-input">
|
|
<label>Search</label>
|
|
<div class="gx-input-field">
|
|
<input type="text" placeholder="e.g., Violet Myers, Brazzers, 4K scene…">
|
|
</div>
|
|
</div>
|
|
|
|
<br>
|
|
|
|
<!-- Input with hint -->
|
|
<div class="gx-input">
|
|
<label>API Key</label>
|
|
<div class="gx-input-field">
|
|
<input type="password" placeholder="Enter TPDB API key">
|
|
</div>
|
|
<div class="gx-input-hint">Your key is stored securely on-device.</div>
|
|
</div>
|
|
|
|
<br>
|
|
|
|
<!-- Error example -->
|
|
<div class="gx-input error">
|
|
<label>Scene ID</label>
|
|
<div class="gx-input-field">
|
|
<input type="text" placeholder="Enter numeric ID">
|
|
</div>
|
|
<div class="gx-input-hint">Invalid scene ID.</div>
|
|
</div>
|
|
|
|
<br>
|
|
|
|
<!-- Textarea -->
|
|
<div class="gx-input">
|
|
<label>Description</label>
|
|
<div class="gx-input-field">
|
|
<textarea rows="4" placeholder="Optional note…"></textarea>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|