greentic-gui 1.1.0

Greentic GUI runtime (Axum-based) that serves tenant packs, enforces auth, and exposes worker/session APIs plus a browser SDK.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>Access denied</title>
  <link rel="stylesheet" href="/assets/theme.css" />
</head>
<body>
  <main id="app-main">
    <h1>Access denied</h1>
    <p>Your session is missing or expired. Please sign in again.</p>
    <button type="button" onclick="window.location='/login'">Go to login</button>
  </main>
</body>
</html>