2ad743b66f
- Add GeoRestrictionReport to report types and builder, so Hub can display geo-blocking status on customer detail pages - Update all 5 BuildReport() call sites with new geoRestriction param - Add /api/geo/ to selfUpdateAuthMiddleware (Hub Bearer token auth) - Replace embedded logo SVG with updated logo.svg (white text variant) - Add FelhomFaviconSVG constant + /static/favicon.svg route - Update layout.html and catchall.html favicon links Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
49 lines
2.2 KiB
HTML
49 lines
2.2 KiB
HTML
{{define "catchall"}}
|
|
<!DOCTYPE html>
|
|
<html lang="hu">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{{if .AppName}}{{.AppName}} — {{end}}felhom.eu</title>
|
|
<link rel="icon" type="image/svg+xml" href="{{.ControllerURL}}/static/favicon.svg">
|
|
<style>
|
|
*{margin:0;padding:0;box-sizing:border-box}
|
|
body{background:#0d1117;color:#e6edf3;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;min-height:100vh;display:flex;align-items:center;justify-content:center}
|
|
.container{text-align:center;max-width:480px;padding:2rem}
|
|
.logo{width:80px;height:auto;margin-bottom:1.5rem;opacity:.85}
|
|
.app-name{font-size:1.5rem;font-weight:600;margin-bottom:.5rem}
|
|
.status-text{color:#8b949e;font-size:1.1rem;margin-bottom:2rem;line-height:1.5}
|
|
.status-icon{font-size:2.5rem;margin-bottom:1rem}
|
|
.status-stopped .status-icon{color:#da3633}
|
|
.status-not_deployed .status-icon{color:#8b949e}
|
|
.status-unknown .status-icon{color:#8b949e}
|
|
.btn{display:inline-block;padding:.6rem 1.2rem;border-radius:6px;text-decoration:none;font-size:.9rem;font-weight:500;transition:all .2s}
|
|
.btn-primary{background:#0088cc;color:#fff}
|
|
.btn-primary:hover{background:#00aaff}
|
|
.btn-outline{border:1px solid #30363d;color:#8b949e;margin-left:.5rem}
|
|
.btn-outline:hover{border-color:#8b949e;color:#e6edf3}
|
|
.host-label{color:#6e7681;font-size:.85rem;margin-top:2rem}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container status-{{.Status}}">
|
|
<img class="logo" src="{{.ControllerURL}}/static/felhom-logo.svg" alt="felhom.eu">
|
|
<div class="status-icon">
|
|
{{if eq .Status "stopped"}}⏸{{else if eq .Status "not_deployed"}}📦{{else}}🔍{{end}}
|
|
</div>
|
|
{{if .AppName}}<div class="app-name">{{.AppName}}</div>{{end}}
|
|
<div class="status-text">{{.StatusText}}</div>
|
|
<div>
|
|
{{if .AppSlug}}
|
|
<a class="btn btn-primary" href="{{.ControllerURL}}/apps/{{.AppSlug}}">Alkalmazás kezelése</a>
|
|
{{else}}
|
|
<a class="btn btn-primary" href="{{.ControllerURL}}/stacks">Alkalmazások</a>
|
|
{{end}}
|
|
<a class="btn btn-outline" href="{{.ControllerURL}}">Vezérlőpult</a>
|
|
</div>
|
|
<div class="host-label">{{.Host}}</div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
{{end}}
|