- 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>
15 lines
490 B
HTML
15 lines
490 B
HTML
<div id="gx-dialog-overlay" class="gx-dialog-overlay"></div>
|
|
|
|
<div id="gx-dialog" class="gx-dialog" role="dialog" aria-modal="true">
|
|
<h2 class="gx-dialog-title">Dialog Title</h2>
|
|
|
|
<div class="gx-dialog-body">
|
|
Your dialog content goes here.
|
|
</div>
|
|
|
|
<div class="gx-dialog-actions">
|
|
<button class="gx-dialog-btn-secondary" data-dialog-close>Cancel</button>
|
|
<button class="gx-dialog-btn-primary" id="gx-dialog-confirm">Confirm</button>
|
|
</div>
|
|
</div>
|