secubox-openwrt/package/secubox/luci-app-service-registry/root/www/secubox-services.html
CyberMind-FR ccba39da62 feat(service-registry): Add unified service aggregation dashboard
Implement Service Registry LuCI app for unified service management:
- RPCD backend aggregating services from HAProxy, Tor, netstat, LXC
- One-click publish to clearnet (HAProxy+ACME) and/or Tor hidden service
- Static landing page generator with QR codes for all URLs
- LuCI dashboard with service grid, quick publish form
- CLI tool (secubox-registry) for command-line management
- Share buttons for X, Telegram, WhatsApp

RPCD methods: list_services, publish_service, unpublish_service,
generate_landing_page, get_qr_data, list_categories

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-28 05:04:26 +01:00

54 lines
1.4 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>SecuBox Services</title>
<style>
body {
font-family: system-ui, sans-serif;
background: #1a1a2e;
color: #fff;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
text-align: center;
}
.container {
padding: 40px;
}
h1 {
color: #0ff;
margin-bottom: 20px;
}
p {
color: #a1a1aa;
margin-bottom: 30px;
}
a {
color: #0ff;
text-decoration: none;
padding: 12px 24px;
border: 1px solid #0ff;
border-radius: 8px;
display: inline-block;
transition: all 0.2s;
}
a:hover {
background: #0ff;
color: #1a1a2e;
}
</style>
</head>
<body>
<div class="container">
<h1>SecuBox Services</h1>
<p>Landing page not yet generated.</p>
<p>Use the Service Registry dashboard to publish services and generate this page.</p>
<a href="/cgi-bin/luci/admin/services/service-registry/overview">Go to Dashboard</a>
</div>
</body>
</html>