diff --git a/static/client.html b/static/client.html index de340ee..cb0fdd2 100644 --- a/static/client.html +++ b/static/client.html @@ -68,6 +68,56 @@ cursor: pointer; } #banner-continue:hover { background: var(--primary-hover); } + #disconnected-overlay { + display: none; + position: fixed; + top: 0; left: 0; right: 0; bottom: 0; + background: rgba(0, 0, 0, 0.85); + z-index: 3000; + justify-content: center; + align-items: center; + } + #disconnected-overlay.visible { display: flex; } + #disconnected-box { + background: var(--bg); + border: 1px solid var(--border); + border-radius: 8px; + padding: 2em 3em; + max-width: 500px; + text-align: center; + font-family: monospace; + color: var(--text); + } + #disconnected-box h2 { + margin: 0 0 0.5em 0; + color: var(--text); + font-size: 1.3em; + } + #disconnected-box p { + color: var(--text-muted); + margin: 0 0 1.5em 0; + font-size: 0.95em; + } + #disconnected-box button { + padding: 0.6em 2em; + border: none; + font-family: monospace; + font-size: 1em; + border-radius: 4px; + cursor: pointer; + margin: 0 0.3em; + } + #btn-close-session { + background: var(--primary); + color: var(--text-on-primary); + } + #btn-close-session:hover { background: var(--primary-hover); } + #btn-reconnect { + background: var(--input); + color: var(--text); + border: 1px solid var(--border) !important; + } + #btn-reconnect:hover { background: var(--border); } @@ -108,6 +158,16 @@ +
+
+

Session Ended

+

The remote session has been disconnected.

+
+ + +
+
+