greentic-gui 0.5.2

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>Greentic Logout</title>
  <link rel="stylesheet" href="/assets/theme.css" />
</head>
<body>
  <main id="app-main">
    <h1>Sign out</h1>
    <p>You can sign out of your Greentic session below.</p>
    <button type="button" onclick="window.location='/auth/logout'">Logout</button>
  </main>
</body>
</html>