92 lines
2.6 KiB
PHP
92 lines
2.6 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="pl">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Karczma-Stoliki - Dev Portal</title>
|
|
<style>
|
|
body {
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
background-color: #f4f4f9;
|
|
color: #333;
|
|
margin: 0;
|
|
padding: 40px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
h1 {
|
|
color: #2c3e50;
|
|
}
|
|
.container {
|
|
background: white;
|
|
padding: 30px;
|
|
border-radius: 12px;
|
|
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
|
|
max-width: 600px;
|
|
width: 100%;
|
|
text-align: center;
|
|
}
|
|
.links-grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
gap: 15px;
|
|
margin-top: 20px;
|
|
}
|
|
.dev-link {
|
|
display: block;
|
|
padding: 15px 20px;
|
|
background: #3498db;
|
|
color: white;
|
|
text-decoration: none;
|
|
font-size: 1.1rem;
|
|
font-weight: bold;
|
|
border-radius: 8px;
|
|
transition: background 0.3s, transform 0.2s;
|
|
}
|
|
.dev-link:hover {
|
|
background: #2980b9;
|
|
transform: translateY(-2px);
|
|
}
|
|
.dev-link.kds { background: #e67e22; }
|
|
.dev-link.kds:hover { background: #d35400; }
|
|
|
|
.dev-link.client { background: #2ecc71; }
|
|
.dev-link.client:hover { background: #27ae60; }
|
|
|
|
.note {
|
|
margin-top: 30px;
|
|
font-size: 0.9rem;
|
|
color: #7f8c8d;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="container">
|
|
<h1>👨💻 Portal Deweloperski</h1>
|
|
<p>Szybki dostęp do modułów aplikacji <strong>Karczma-Stoliki</strong>.</p>
|
|
|
|
<div class="links-grid">
|
|
<a href="public/staff/index.php" class="dev-link">
|
|
🔐 Panel Admina (logowanie)
|
|
</a>
|
|
<a href="public/staff/kds.php" class="dev-link kds">
|
|
🍳 Ekran KDS (Kuchnia)
|
|
</a>
|
|
<a href="public/waiter/index.php" class="dev-link client">
|
|
🛎️ Panel Kelnera (wezwania)
|
|
</a>
|
|
<a href="public/app.html" class="dev-link client">
|
|
📱 Aplikacja dla Gościa (Poprosi o Hash)
|
|
</a>
|
|
</div>
|
|
|
|
<div class="note">
|
|
Plik tymczasowy (index.php) wygenerowany do testów. Przed publikacją docelową można go usunąć.
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|