929ee6557a
- Add base app structure, including Bootstrap setup and Alpine.js integration. - Implement authentication flow with session handling. - Integrate stock management and label creation functionalities. - Include responsive styling and theme using CSS variables and custom components. - Add API clients for Tryton-based backend. - Set up kitchen and dashboard navigation workflows. - Configure service worker for PWA support.
44 lines
1.1 KiB
HTML
44 lines
1.1 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>Lonc Offline</title>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
min-height: 100vh;
|
|
display: grid;
|
|
place-items: center;
|
|
font-family: "Avenir Next", "Segoe UI", sans-serif;
|
|
color: #1f2740;
|
|
background:
|
|
radial-gradient(circle at top left, rgba(90, 169, 255, 0.22), transparent 22%),
|
|
linear-gradient(180deg, #f8fbff 0%, #f4f7fb 42%, #eef2f8 100%);
|
|
}
|
|
|
|
main {
|
|
max-width: 28rem;
|
|
margin: 1.5rem;
|
|
padding: 2rem;
|
|
border-radius: 1.5rem;
|
|
background: rgba(255, 255, 255, 0.92);
|
|
box-shadow: 0 24px 48px rgba(24, 42, 79, 0.08);
|
|
}
|
|
|
|
h1 {
|
|
margin-top: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<h1>You are offline</h1>
|
|
<p>
|
|
Lonc can still open its cached shell, but Tryton-backed data and save actions need the network.
|
|
</p>
|
|
<p>Reconnect and reload when you are ready to continue.</p>
|
|
</main>
|
|
</body>
|
|
</html>
|