mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-31 04:23:40 +00:00
* fix typeo in patch db seed * show all registries in updates tab, fix required dependnecy display in marketplace, update browser tab title desc * always show pointer for version select * chore: fix comments * support html in action desc and marketplace long desc, only show qr in action res if qr is true * disable save if smtp creds not edited, show better smtp success message * dont dismiss login spinner until patchDB returns * feat: redesign of service dashboard and interface (#2946) * feat: redesign of service dashboard and interface * chore: comments * re-add setup complete * dibale launch UI when not running, re-style things, rename things * back to 1000 * fix clearnet docs link and require password retype in setup wiz * faster hint display * display dependency ID if title not available * fix migration * better init progress view * fix setup success page by providing VERSION and notifications page fixes * force uninstall from service error page, soft or hard * handle error state better * chore: fixed for install and setup wizards * chore: fix issues (#2949) * enable and disable kiosk mode * minor fixes * fix dependency mounts * dismissable tasks * provide replayId * default if health check success message is null * look for wifi interface too * dash for null user agent in sessions * add disk repair to diagnostic api --------- Co-authored-by: waterplea <alexander@inkin.ru> Co-authored-by: Aiden McClelland <me@drbonez.dev>
67 lines
1.6 KiB
HTML
67 lines
1.6 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>StartOS</title>
|
|
|
|
<base href="/" />
|
|
|
|
<meta
|
|
name="viewport"
|
|
content="viewport-fit=cover, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"
|
|
/>
|
|
<meta name="format-detection" content="telephone=no" />
|
|
<meta name="msapplication-tap-highlight" content="no" />
|
|
<link
|
|
rel="icon"
|
|
type="image/png"
|
|
href="/assets/icons/favicon-96x96.png"
|
|
sizes="96x96"
|
|
/>
|
|
<link rel="icon" type="image/svg+xml" href="/assets/icons/favicon.svg" />
|
|
<link rel="shortcut icon" href="/assets/icons/favicon.ico" />
|
|
<link
|
|
rel="apple-touch-icon"
|
|
sizes="180x180"
|
|
href="/assets/icons/apple-touch-icon.png"
|
|
/>
|
|
<meta name="apple-mobile-web-app-title" content="StartOS" />
|
|
|
|
<link rel="manifest" href="manifest.webmanifest" />
|
|
<meta name="theme-color" content="#ff5b71" />
|
|
<style>
|
|
html {
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
height: 100%;
|
|
margin: 0;
|
|
color: #fff;
|
|
background: #222428;
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
app-root {
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 1rem;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<app-root>
|
|
<img src="assets/img/icon.png" style="width: 8rem; height: 8rem" alt="" />
|
|
<h1>Loading</h1>
|
|
<progress></progress>
|
|
</app-root>
|
|
<noscript>
|
|
Please enable JavaScript to continue using this application.
|
|
</noscript>
|
|
</body>
|
|
</html>
|