prvi kod za live uporabu
Some checks failed
ERP CI Pipeline / test (push) Has been cancelled

This commit is contained in:
mariomitte
2026-07-09 21:21:17 +02:00
parent 857bb65d52
commit 5d39e048ba
239 changed files with 25151 additions and 0 deletions

View File

@@ -0,0 +1,53 @@
<!doctype html>
<html lang="hr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Offline | ERP Generic</title>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
background: #f9fafb;
color: #111827;
min-height: 100vh;
display: grid;
place-items: center;
}
.card {
max-width: 560px;
margin: 24px;
background: #fff;
border: 1px solid #e5e7eb;
border-radius: 12px;
padding: 24px;
box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}
h1 {
margin-top: 0;
}
p {
line-height: 1.5;
}
button {
margin-top: 12px;
border: 0;
border-radius: 8px;
background: #4f46e5;
color: #fff;
padding: 10px 14px;
cursor: pointer;
}
</style>
</head>
<body>
<div class="card">
<h1>Trenutno ste offline</h1>
<p>
Aplikacija i dalje radi s lokalno spremljenim podacima. Novi zapisi bit će sinkronizirani
čim se internetska veza vrati.
</p>
<button onclick="location.reload()">Pokušaj ponovno</button>
</div>
</body>
</html>