Goondex/internal/web/static/css/gx/GX_Modal.html
Stu Leak 16fb407a3c v0.1.0-dev4: Add web frontend with UI component library
- 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>
2025-11-17 10:47:30 -05:00

22 lines
829 B
HTML

<div id="modal-import" class="gx-modal-backdrop">
<div class="gx-modal">
<span class="gx-modal-close" onclick="closeModal('modal-import')">&times;</span>
<div class="gx-modal-header">
<h2 class="gx-modal-title">Import Everything</h2>
</div>
<div class="gx-modal-body">
This will import <strong>performers</strong>, <strong>studios</strong>, and
<strong>scenes</strong> from ThePornDB.
<br><br>
It may take several minutes depending on your system and internet speed.
</div>
<div class="gx-modal-footer">
<button class="btn-secondary" onclick="closeModal('modal-import')">Cancel</button>
<button class="btn" onclick="startBulkImport()">Start Import</button>
</div>
</div>
</div>