Goondex/internal/web/static/css/gx/GX_Checkbox.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

32 lines
752 B
HTML

<div style="padding: 2rem; background:#0A0A0C;">
<label class="gx-checkbox">
<input type="checkbox">
<span class="gx-checkbox-box">
<span class="gx-checkbox-check"></span>
</span>
Enable Neon Mode
</label>
<br><br>
<label class="gx-checkbox">
<input type="checkbox" checked>
<span class="gx-checkbox-box">
<span class="gx-checkbox-check"></span>
</span>
Import Studios Automatically
</label>
<br><br>
<label class="gx-checkbox disabled">
<input type="checkbox" disabled>
<span class="gx-checkbox-box">
<span class="gx-checkbox-check"></span>
</span>
Disabled Option
</label>
</div>