- 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>
28 lines
767 B
HTML
28 lines
767 B
HTML
<div style="background:#0A0A0C; padding: 2rem; color:white; display:flex; flex-direction:column; gap:1.5rem;">
|
|
|
|
<label class="gx-radio">
|
|
<input type="radio" name="demo" checked>
|
|
<div class="gx-radio-mark"></div>
|
|
<span>Option A</span>
|
|
</label>
|
|
|
|
<label class="gx-radio">
|
|
<input type="radio" name="demo">
|
|
<div class="gx-radio-mark"></div>
|
|
<span>Option B</span>
|
|
</label>
|
|
|
|
<label class="gx-radio">
|
|
<input type="radio" name="demo">
|
|
<div class="gx-radio-mark"></div>
|
|
<span>Option C</span>
|
|
</label>
|
|
|
|
<label class="gx-radio">
|
|
<input type="radio" name="demo" disabled>
|
|
<div class="gx-radio-mark"></div>
|
|
<span>Disabled Option</span>
|
|
</label>
|
|
|
|
</div>
|