54 lines
1.3 KiB
HTML
54 lines
1.3 KiB
HTML
<!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>
|