mirror of
https://github.com/Dvorinka/PPve.git
synced 2026-06-03 20:12:59 +00:00
Add files via upload
This commit is contained in:
@@ -120,7 +120,7 @@ monitor: ## Monitor the service with file watching
|
|||||||
@while true; do \
|
@while true; do \
|
||||||
inotifywait -e modify contacts.xlsx 2>/dev/null && \
|
inotifywait -e modify contacts.xlsx 2>/dev/null && \
|
||||||
echo "File changed, reloading..." && \
|
echo "File changed, reloading..." && \
|
||||||
curl -X POST http://webportal:$(PORT)/kontakt/reload; \
|
curl -X POST http://localhost:$(PORT)/kontakt/reload; \
|
||||||
sleep 1; \
|
sleep 1; \
|
||||||
done
|
done
|
||||||
|
|
||||||
@@ -163,6 +163,6 @@ info: ## Show application information
|
|||||||
@echo "Build dir: $(BUILD_DIR)"
|
@echo "Build dir: $(BUILD_DIR)"
|
||||||
@echo ""
|
@echo ""
|
||||||
@echo "Endpoints:"
|
@echo "Endpoints:"
|
||||||
@echo " http://webportal:$(PORT)/kontakt - Web interface"
|
@echo " http://localhost:$(PORT)/kontakt - Web interface"
|
||||||
@echo " http://webportal:$(PORT)/kontakt/contacts - JSON API"
|
@echo " http://localhost:$(PORT)/kontakt/contacts - JSON API"
|
||||||
@echo " http://webportal:$(PORT)/kontakt/reload - Reload data (POST)"
|
@echo " http://localhost:$(PORT)/kontakt/reload - Reload data (POST)"
|
||||||
+76
-18
@@ -55,22 +55,56 @@
|
|||||||
<nav class="bg-brand-blue text-white shadow-lg">
|
<nav class="bg-brand-blue text-white shadow-lg">
|
||||||
<div class="max-w-6xl mx-auto px-4 py-3 flex justify-between items-center">
|
<div class="max-w-6xl mx-auto px-4 py-3 flex justify-between items-center">
|
||||||
<div class="flex items-center space-x-2">
|
<div class="flex items-center space-x-2">
|
||||||
<img src="http://pp-kunovice.cz/wp-content/uploads/2022/04/logo-retina-white.png" alt="Poppe Potthoff Logo" class="h-10">
|
<a href="index.html"><img src="http://pp-kunovice.cz/wp-content/uploads/2022/04/logo-retina-white.png" alt="Poppe Potthoff Logo" class="h-10"></a>
|
||||||
<div class="hidden md:block text-xl font-semibold">Poppe + Potthoff</div>
|
<div class="hidden md:block text-xl font-semibold">Poppe + Potthoff</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- Mobile menu button -->
|
||||||
<div class="md:hidden">
|
<div class="md:hidden">
|
||||||
<button class="focus:outline-none">
|
<button id="mobile-menu-button" class="text-white focus:outline-none">
|
||||||
<i class="fas fa-bars text-xl"></i>
|
<svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||||
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
|
||||||
|
</svg>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- Desktop menu -->
|
||||||
|
<div class="hidden md:flex space-x-6">
|
||||||
|
<a href="/index.html" class="hover:text-brand-light-blue">Rozcestník</a>
|
||||||
|
<a href="/evidence-aut" class="hover:text-brand-light-blue">Evidence aut</a>
|
||||||
|
<a href="http://ppc-app/pwkweb2/" class="hover:text-brand-light-blue">Obědy</a>
|
||||||
|
<a href="http://osticket/" class="hover:text-brand-light-blue">OSticket</a>
|
||||||
|
<a href="http://kanboard/" class="hover:text-brand-light-blue">Kanboard</a>
|
||||||
|
<a href="/kontakt" class="hover:text-brand-light-blue">Kontakt</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Mobile menu -->
|
||||||
|
<div id="mobile-menu" class="hidden md:hidden px-2 pt-2 pb-3 space-y-1">
|
||||||
|
<a href="/index.html" class="block px-3 py-2 rounded-md text-base font-medium hover:text-brand-light-blue">Rozcestník</a>
|
||||||
|
<a href="/evidence-aut" class="block px-3 py-2 rounded-md text-base font-medium hover:text-brand-light-blue">Evidence aut</a>
|
||||||
|
<a href="http://ppc-app/pwkweb2/" class="block px-3 py-2 rounded-md text-base font-medium hover:text-brand-light-blue">Obědy</a>
|
||||||
|
<a href="http://osticket/" class="block px-3 py-2 rounded-md text-base font-medium hover:text-brand-light-blue">OSticket</a>
|
||||||
|
<a href="http://kanboard/" class="block px-3 py-2 rounded-md text-base font-medium hover:text-brand-light-blue">Kanboard</a>
|
||||||
|
<a href="/kontakt" class="block px-3 py-2 rounded-md text-base font-medium hover:text-brand-light-blue">Kontakt</a>
|
||||||
</div>
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
// Mobile menu toggle
|
||||||
|
const mobileMenuButton = document.getElementById('mobile-menu-button');
|
||||||
|
const mobileMenu = document.getElementById('mobile-menu');
|
||||||
|
|
||||||
|
mobileMenuButton.addEventListener('click', () => {
|
||||||
|
mobileMenu.classList.toggle('hidden');
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
<!-- Page Header -->
|
<!-- Page Header -->
|
||||||
<div class="bg-gradient-to-r from-brand-blue to-brand-light-blue text-white py-6 mb-8">
|
<div class="bg-gradient-to-r from-brand-blue to-brand-light-blue text-white py-6 mb-8">
|
||||||
<div class="max-w-6xl mx-auto px-4">
|
<div class="max-w-6xl mx-auto px-4">
|
||||||
<h1 class="text-3xl font-bold">Záznam jízdy služebního vozu</h1>
|
<h1 class="text-3xl font-bold">Poppe + Potthoff – Záznam jízd služebního auta</h1>
|
||||||
<p class="text-gray-100 mt-2">Systém pro evidenci služebních jízd společnosti Poppe + Potthoff</p>
|
<p class="text-gray-100 mt-2">Evidence služebních jízd</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -106,12 +140,12 @@
|
|||||||
<select id="vehicle" name="vehicle" required
|
<select id="vehicle" name="vehicle" required
|
||||||
class="block w-full pl-10 pr-3 py-2 border border-gray-300 rounded-md shadow-sm focus:ring-brand-light-blue focus:border-brand-light-blue appearance-none">
|
class="block w-full pl-10 pr-3 py-2 border border-gray-300 rounded-md shadow-sm focus:ring-brand-light-blue focus:border-brand-light-blue appearance-none">
|
||||||
<option value="" selected disabled>Vyberte vozidlo...</option>
|
<option value="" selected disabled>Vyberte vozidlo...</option>
|
||||||
<option value="VW Caddy - SPZ">VW Caddy - SPZ</option>
|
<option value="VW Caddy - 4Z1 8241">VW Caddy - 4Z1 8241</option>
|
||||||
<option value="VW Golf - SPZ">VW Golf - SPZ</option>
|
<option value="VW Golf - 5Z5 8694">VW Golf - 5Z5 8694</option>
|
||||||
<option value="Škoda Fabia - SPZ">Škoda Fabia – SPZ</option>
|
<option value="Škoda Fabia - 1Z3 5789">Škoda Fabia – 1Z3 5789</option>
|
||||||
<option value="BMW 218d č. 1 - SPZ">BMW 218d č. 1 – SPZ</option>
|
<option value="BMW 218d - 6Z5 4739">BMW 218d – 6Z5 4739</option>
|
||||||
<option value="BMW 218d č. 2 - SPZ">BMW 218d č. 2 – SPZ</option>
|
<option value="BMW 218d - 6Z5 4740">BMW 218d – 6Z5 4740</option>
|
||||||
<option value="Škoda Superb - SPZ">Škoda Superb - SPZ</option>
|
<option value="Škoda Superb - 2BY 2398">Škoda Superb - 2BY 2398</option>
|
||||||
</select>
|
</select>
|
||||||
<div class="absolute inset-y-0 right-0 pr-3 flex items-center pointer-events-none">
|
<div class="absolute inset-y-0 right-0 pr-3 flex items-center pointer-events-none">
|
||||||
<i class="fas fa-chevron-down text-gray-400"></i>
|
<i class="fas fa-chevron-down text-gray-400"></i>
|
||||||
@@ -264,16 +298,40 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Footer -->
|
<!-- Footer -->
|
||||||
<footer class="bg-gray-800 text-gray-300 py-8">
|
<footer class="bg-gray-800 text-gray-400 py-8 mt-12">
|
||||||
<div class="max-w-6xl mx-auto px-4">
|
<div class="max-w-6xl mx-auto px-4">
|
||||||
<div class="flex flex-col md:flex-row justify-between">
|
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
|
||||||
<div class="mb-6 md:mb-0">
|
<!-- Company Info -->
|
||||||
<img src="http://pp-kunovice.cz/wp-content/uploads/2022/04/logo-retina-white.png" alt="Poppe Potthoff Logo" class="h-8 mb-3">
|
<div>
|
||||||
<p class="text-sm">© 2025 Poppe Potthoff CZ. Všechna práva vyhrazena.</p>
|
<h3 class="text-white text-lg font-semibold mb-4">Poppe + Potthoff CZ</h3>
|
||||||
|
<p class="mb-2">IČO: 26902214</p>
|
||||||
|
<p class="mb-2">DIČ: CZ26902214</p>
|
||||||
|
<p class="mb-2">Schránka: gfrk5qy</p>
|
||||||
|
<p>Na Záhonech 1086, 686 04 Kunovice</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Quick Links -->
|
||||||
|
<div>
|
||||||
|
<h3 class="text-white text-lg font-semibold mb-4">Rychlé odkazy</h3>
|
||||||
|
<ul class="space-y-2">
|
||||||
|
<li><a href="/index.html" class="hover:text-white">Rozcestník</a></li>
|
||||||
|
<li><a href="/evidence-aut" class="hover:text-white">Evidence aut</a></li>
|
||||||
|
<li><a href="http://ppc-app/pwkweb2/" class="hover:text-white">Objednávka obědů</a></li>
|
||||||
|
<li><a href="http://osticket/" class="hover:text-white">Technická podpora</a></li>
|
||||||
|
<li><a href="/kontakt" class="hover:text-white">Kontakty</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Copyright -->
|
||||||
|
<div class="md:text-right">
|
||||||
|
<img src="http://pp-kunovice.cz/wp-content/uploads/2022/04/logo-retina-white.png" alt="Poppe Potthoff Logo" class="h-10 mb-4 inline-block">
|
||||||
|
<p class="text-sm"> 2025 Poppe + Potthoff CZ</p>
|
||||||
|
<p class="text-xs mt-2">Všechna práva vyhrazena</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="mt-8 text-xs text-gray-400 text-center">
|
|
||||||
<p>Created by: TDvorak 2025</p>
|
<div class="border-t border-gray-700 mt-8 pt-6 text-center text-sm">
|
||||||
|
<p>Created by <a href="https://tdvorak.dev" class="text-blue-400 hover:text-blue-300">TDvorak</a></p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
|
|||||||
+102
-12
@@ -15,17 +15,76 @@
|
|||||||
box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
|
box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
<script>
|
||||||
|
tailwind.config = {
|
||||||
|
theme: {
|
||||||
|
extend: {
|
||||||
|
colors: {
|
||||||
|
'brand-blue': '#004990',
|
||||||
|
'brand-light-blue': '#0072b0',
|
||||||
|
'brand-gray': '#f0f2f5'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
</head>
|
</head>
|
||||||
<body class="bg-gray-100 min-h-screen">
|
<body class="bg-gray-100 min-h-screen">
|
||||||
<header class="bg-gradient-to-r from-blue-600 to-indigo-700 text-white shadow-lg" style="margin-bottom: 20px;">
|
<nav class="bg-brand-blue text-white shadow-lg">
|
||||||
<div class="container mx-auto px-4 py-6 flex items-center">
|
<div class="max-w-6xl mx-auto px-4 py-3 flex justify-between items-center">
|
||||||
|
<div class="flex items-center space-x-2">
|
||||||
<div>
|
<a href="index.html"><img src="http://pp-kunovice.cz/wp-content/uploads/2022/04/logo-retina-white.png" alt="Poppe Potthoff Logo" class="h-10"></a>
|
||||||
<h1 class="text-3xl font-bold">Poppe + Potthoff - Firemní Aplikace</h1>
|
<div class="hidden md:block text-xl font-semibold">Poppe + Potthoff</div>
|
||||||
<p class="mt-2 text-blue-100">Rychlý přístup ke všem důležitým systémům</p>
|
</div>
|
||||||
</div>
|
|
||||||
|
<!-- Mobile menu button -->
|
||||||
|
<div class="md:hidden">
|
||||||
|
<button id="mobile-menu-button" class="text-white focus:outline-none">
|
||||||
|
<svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||||
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
|
||||||
|
</svg>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Desktop menu -->
|
||||||
|
<div class="hidden md:flex space-x-6">
|
||||||
|
<a href="/index.html" class="hover:text-brand-light-blue">Rozcestník</a>
|
||||||
|
<a href="/evidence-aut" class="hover:text-brand-light-blue">Evidence aut</a>
|
||||||
|
<a href="http://ppc-app/pwkweb2/" class="hover:text-brand-light-blue">Obědy</a>
|
||||||
|
<a href="http://osticket/" class="hover:text-brand-light-blue">OSticket</a>
|
||||||
|
<a href="http://kanboard/" class="hover:text-brand-light-blue">Kanboard</a>
|
||||||
|
<a href="/kontakt" class="hover:text-brand-light-blue">Kontakt</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</header>
|
|
||||||
|
<!-- Mobile menu -->
|
||||||
|
<div id="mobile-menu" class="hidden md:hidden px-2 pt-2 pb-3 space-y-1">
|
||||||
|
<a href="/index.html" class="block px-3 py-2 rounded-md text-base font-medium hover:text-brand-light-blue">Rozcestník</a>
|
||||||
|
<a href="/evidence-aut" class="block px-3 py-2 rounded-md text-base font-medium hover:text-brand-light-blue">Evidence aut</a>
|
||||||
|
<a href="http://ppc-app/pwkweb2/" class="block px-3 py-2 rounded-md text-base font-medium hover:text-brand-light-blue">Obědy</a>
|
||||||
|
<a href="http://osticket/" class="block px-3 py-2 rounded-md text-base font-medium hover:text-brand-light-blue">OSticket</a>
|
||||||
|
<a href="http://kanboard/" class="block px-3 py-2 rounded-md text-base font-medium hover:text-brand-light-blue">Kanboard</a>
|
||||||
|
<a href="/kontakt" class="block px-3 py-2 rounded-md text-base font-medium hover:text-brand-light-blue">Kontakt</a>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
// Mobile menu toggle
|
||||||
|
const mobileMenuButton = document.getElementById('mobile-menu-button');
|
||||||
|
const mobileMenu = document.getElementById('mobile-menu');
|
||||||
|
|
||||||
|
mobileMenuButton.addEventListener('click', () => {
|
||||||
|
mobileMenu.classList.toggle('hidden');
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<!-- Page Header -->
|
||||||
|
<div class="bg-gradient-to-r from-brand-blue to-brand-light-blue text-white py-6 mb-8">
|
||||||
|
<div class="max-w-6xl mx-auto px-4">
|
||||||
|
<h1 class="text-3xl font-bold">Poppe + Potthoff - Firemní Aplikace</h1>
|
||||||
|
<p class="text-gray-100 mt-2">Rychlý přístup ke všem důležitým systémům</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<main class="container mx-auto px-4 py-8">
|
<main class="container mx-auto px-4 py-8">
|
||||||
<!-- Search -->
|
<!-- Search -->
|
||||||
@@ -104,11 +163,42 @@
|
|||||||
</div>
|
</div>
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
<footer class="bg-gray-800 text-gray-400 py-6 mt-12">
|
<footer class="bg-gray-800 text-gray-400 py-8 mt-12">
|
||||||
<div class="container mx-auto px-4 text-center">
|
<div class="max-w-6xl mx-auto px-4">
|
||||||
<p> 2025 Poppe + Potthoff</p>
|
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
|
||||||
<p class="mt-2 text-sm">Created by <a href="https://tdvorak.dev" class="text-blue-400 hover:text-blue-300">TDvorak</a></p>
|
<!-- Company Info -->
|
||||||
|
<div>
|
||||||
|
<h3 class="text-white text-lg font-semibold mb-4">Poppe + Potthoff CZ</h3>
|
||||||
|
<p class="mb-2">IČO: 26902214</p>
|
||||||
|
<p class="mb-2">DIČ: CZ26902214</p>
|
||||||
|
<p class="mb-2">Schránka: gfrk5qy</p>
|
||||||
|
<p>Na Záhonech 1086, 686 04 Kunovice</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Quick Links -->
|
||||||
|
<div>
|
||||||
|
<h3 class="text-white text-lg font-semibold mb-4">Rychlé odkazy</h3>
|
||||||
|
<ul class="space-y-2">
|
||||||
|
<li><a href="/index.html" class="hover:text-white">Rozcestník</a></li>
|
||||||
|
<li><a href="/evidence-aut" class="hover:text-white">Evidence aut</a></li>
|
||||||
|
<li><a href="http://ppc-app/pwkweb2/" class="hover:text-white">Objednávka obědů</a></li>
|
||||||
|
<li><a href="http://osticket/" class="hover:text-white">Technická podpora</a></li>
|
||||||
|
<li><a href="/kontakt" class="hover:text-white">Kontakty</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Copyright -->
|
||||||
|
<div class="md:text-right">
|
||||||
|
<img src="http://pp-kunovice.cz/wp-content/uploads/2022/04/logo-retina-white.png" alt="Poppe Potthoff Logo" class="h-10 mb-4 inline-block">
|
||||||
|
<p class="text-sm"> 2025 Poppe + Potthoff CZ</p>
|
||||||
|
<p class="text-xs mt-2">Všechna práva vyhrazena</p>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="border-t border-gray-700 mt-8 pt-6 text-center text-sm">
|
||||||
|
<p>Created by <a href="https://tdvorak.dev" class="text-blue-400 hover:text-blue-300">TDvorak</a></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|||||||
Binary file not shown.
+110
-12
@@ -21,21 +21,83 @@
|
|||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
<script>
|
||||||
|
tailwind.config = {
|
||||||
|
theme: {
|
||||||
|
extend: {
|
||||||
|
colors: {
|
||||||
|
'brand-blue': '#004990',
|
||||||
|
'brand-light-blue': '#0072b0',
|
||||||
|
'brand-gray': '#f0f2f5'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
</head>
|
</head>
|
||||||
<body class="bg-gray-100 min-h-screen">
|
<body class="bg-gray-100 min-h-screen">
|
||||||
<header class="bg-gradient-to-r from-blue-600 to-indigo-700 text-white shadow-lg" style="margin-bottom: 20px;">
|
<nav class="bg-brand-blue text-white shadow-lg">
|
||||||
<div class="container mx-auto px-4 py-6">
|
<div class="max-w-6xl mx-auto px-4 py-3 flex justify-between items-center">
|
||||||
<h1 class="text-3xl font-bold">📞 Firemní telefonní seznam</h1>
|
<div class="flex items-center space-x-2">
|
||||||
<p class="mt-2 text-blue-100">Poppe + Potthoff kontakty</p>
|
<a href="../index.html"><img src="http://pp-kunovice.cz/wp-content/uploads/2022/04/logo-retina-white.png" alt="Poppe Potthoff Logo" class="h-10"></a>
|
||||||
|
<div class="hidden md:block text-xl font-semibold">Poppe + Potthoff</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Mobile menu button -->
|
||||||
|
<div class="md:hidden">
|
||||||
|
<button id="mobile-menu-button" class="text-white focus:outline-none">
|
||||||
|
<svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||||
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
|
||||||
|
</svg>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Desktop menu -->
|
||||||
|
<div class="hidden md:flex space-x-6">
|
||||||
|
<a href="../index.html" class="hover:text-brand-light-blue">Rozcestník</a>
|
||||||
|
<a href="../evidence-aut" class="hover:text-brand-light-blue">Evidence aut</a>
|
||||||
|
<a href="http://ppc-app/pwkweb2/" class="hover:text-brand-light-blue">Objednávka obědů</a>
|
||||||
|
<a href="http://osticket/" class="hover:text-brand-light-blue">OSticket</a>
|
||||||
|
<a href="http://kanboard/" class="hover:text-brand-light-blue">Kanboard</a>
|
||||||
|
<a href="index.html" class="hover:text-brand-light-blue">Kontakt</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</header>
|
|
||||||
|
<!-- Mobile menu -->
|
||||||
|
<div id="mobile-menu" class="hidden md:hidden px-2 pt-2 pb-3 space-y-1">
|
||||||
|
<a href="../index.html" class="block px-3 py-2 rounded-md text-base font-medium hover:text-brand-light-blue">Rozcestník</a>
|
||||||
|
<a href="../evidence-aut" class="block px-3 py-2 rounded-md text-base font-medium hover:text-brand-light-blue">Evidence aut</a>
|
||||||
|
<a href="http://ppc-app/pwkweb2/" class="block px-3 py-2 rounded-md text-base font-medium hover:text-brand-light-blue">Objednávka obědů</a>
|
||||||
|
<a href="http://osticket/" class="block px-3 py-2 rounded-md text-base font-medium hover:text-brand-light-blue">OSticket</a>
|
||||||
|
<a href="http://kanboard/" class="block px-3 py-2 rounded-md text-base font-medium hover:text-brand-light-blue">Kanboard</a>
|
||||||
|
<a href="index.html" class="block px-3 py-2 rounded-md text-base font-medium hover:text-brand-light-blue">Kontakt</a>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
// Mobile menu toggle
|
||||||
|
const mobileMenuButton = document.getElementById('mobile-menu-button');
|
||||||
|
const mobileMenu = document.getElementById('mobile-menu');
|
||||||
|
|
||||||
|
mobileMenuButton.addEventListener('click', () => {
|
||||||
|
mobileMenu.classList.toggle('hidden');
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<!-- Page Header -->
|
||||||
|
<div class="bg-gradient-to-r from-brand-blue to-brand-light-blue text-white py-6 mb-8">
|
||||||
|
<div class="max-w-6xl mx-auto px-4">
|
||||||
|
<h1 class="text-3xl font-bold">Poppe + Potthoff - Firemní telefonní seznam</h1>
|
||||||
|
<p class="text-gray-100 mt-2">Poppe + Potthoff kontakty</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="container mx-auto px-4 py-8 max-w-7xl">
|
<div class="container mx-auto px-4 py-8 max-w-7xl">
|
||||||
<div class="bg-white rounded-xl shadow p-6 md:p-8">
|
<div class="bg-white rounded-xl shadow p-6 md:p-8">
|
||||||
<!-- Header -->
|
<!-- Header -->
|
||||||
<div class="flex flex-col sm:flex-row justify-between items-start sm:items-center mb-8 gap-4">
|
<div class="flex flex-col sm:flex-row justify-between items-start sm:items-center mb-8 gap-4">
|
||||||
<div>
|
<div>
|
||||||
<h1 class="text-4xl font-bold text-gray-800 mb-2">📞 Kontakty</h1>
|
<h1 class="text-4xl font-bold text-gray-800 mb-2"><i class="fas fa-phone-alt text-brand-blue mr-2"></i>Kontakty</h1>
|
||||||
<p class="text-gray-600">Firemní telefonní seznam</p>
|
<p class="text-gray-600">Firemní telefonní seznam</p>
|
||||||
</div>
|
</div>
|
||||||
<button onclick="reloadContacts()" id="reloadBtn"
|
<button onclick="reloadContacts()" id="reloadBtn"
|
||||||
@@ -100,7 +162,9 @@
|
|||||||
|
|
||||||
<!-- No Results -->
|
<!-- No Results -->
|
||||||
<div id="noResults" class="hidden text-center py-16">
|
<div id="noResults" class="hidden text-center py-16">
|
||||||
<div class="text-6xl mb-4">🔍</div>
|
<div class="text-5xl mb-4 text-gray-400">
|
||||||
|
<i class="fas fa-search"></i>
|
||||||
|
</div>
|
||||||
<h3 class="text-xl font-semibold text-gray-700 mb-2">Žádné výsledky</h3>
|
<h3 class="text-xl font-semibold text-gray-700 mb-2">Žádné výsledky</h3>
|
||||||
<p class="text-gray-500">Zkuste změnit hledaný výraz</p>
|
<p class="text-gray-500">Zkuste změnit hledaný výraz</p>
|
||||||
</div>
|
</div>
|
||||||
@@ -108,19 +172,53 @@
|
|||||||
|
|
||||||
<!-- Error State -->
|
<!-- Error State -->
|
||||||
<div id="error" class="hidden text-center py-16">
|
<div id="error" class="hidden text-center py-16">
|
||||||
<div class="text-6xl mb-4">⚠️</div>
|
<div class="text-5xl mb-4 text-red-400">
|
||||||
|
<i class="fas fa-exclamation-triangle"></i>
|
||||||
|
</div>
|
||||||
<h3 class="text-xl font-semibold text-red-600 mb-2">Chyba při načítání</h3>
|
<h3 class="text-xl font-semibold text-red-600 mb-2">Chyba při načítání</h3>
|
||||||
<p class="text-gray-600 mb-4">Nepodařilo se načíst kontakty</p>
|
<p class="text-gray-600 mb-4">Nepodařilo se načíst kontakty</p>
|
||||||
<button onclick="loadContacts()" class="bg-red-600 hover:bg-red-700 text-white px-4 py-2 rounded-lg transition-colors">
|
<button onclick="loadContacts()" class="bg-red-600 hover:bg-red-700 text-white px-4 py-2 rounded-lg transition-colors">
|
||||||
Zkusit znovu
|
<i class="fas fa-sync-alt mr-2"></i>Zkusit znovu
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<footer class="bg-gray-800 text-gray-400 py-6 mt-12">
|
<footer class="bg-gray-800 text-gray-400 py-8 mt-12">
|
||||||
<div class="container mx-auto px-4 text-center">
|
<div class="max-w-6xl mx-auto px-4">
|
||||||
<p>2025 Poppe + Potthoff</p>
|
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
|
||||||
|
<!-- Company Info -->
|
||||||
|
<div>
|
||||||
|
<h3 class="text-white text-lg font-semibold mb-4">Poppe + Potthoff CZ</h3>
|
||||||
|
<p class="mb-2">IČO: 26902214</p>
|
||||||
|
<p class="mb-2">DIČ: CZ26902214</p>
|
||||||
|
<p class="mb-2">Schránka: gfrk5qy</p>
|
||||||
|
<p>Na Záhonech 1086, 686 04 Kunovice</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Quick Links -->
|
||||||
|
<div>
|
||||||
|
<h3 class="text-white text-lg font-semibold mb-4">Rychlé odkazy</h3>
|
||||||
|
<ul class="space-y-2">
|
||||||
|
<li><a href="../index.html" class="hover:text-white">Rozcestník</a></li>
|
||||||
|
<li><a href="../evidence-aut" class="hover:text-white">Evidence aut</a></li>
|
||||||
|
<li><a href="http://ppc-app/pwkweb2/" class="hover:text-white">Objednávka obědů</a></li>
|
||||||
|
<li><a href="http://osticket/" class="hover:text-white">Technická podpora</a></li>
|
||||||
|
<li><a href="/kontakt" class="hover:text-white">Kontakty</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Copyright -->
|
||||||
|
<div class="md:text-right">
|
||||||
|
<img src="http://pp-kunovice.cz/wp-content/uploads/2022/04/logo-retina-white.png" alt="Poppe Potthoff Logo" class="h-10 mb-4 inline-block">
|
||||||
|
<p class="text-sm"> 2025 Poppe + Potthoff CZ</p>
|
||||||
|
<p class="text-xs mt-2">Všechna práva vyhrazena</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="border-t border-gray-700 mt-8 pt-6 text-center text-sm">
|
||||||
|
<p>Created by <a href="https://tdvorak.dev" class="text-blue-400 hover:text-blue-300">TDvorak</a></p>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|||||||
@@ -188,11 +188,11 @@ func handleSubmit(w http.ResponseWriter, r *http.Request) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func sendEmail(entry TripEntry, parsedDateStart, parsedDateEnd time.Time, czechMonths []string) error {
|
func sendEmail(entry TripEntry, parsedDateStart, parsedDateEnd time.Time, czechMonths []string) error {
|
||||||
smtpHost := "mail.pp-kunovice.cz"
|
smtpHost := "smtp.gmail.com"
|
||||||
smtpPort := 465
|
smtpPort := 465
|
||||||
sender := "sluzebnicek@pp-kunovice.cz"
|
sender := "contact.dvorak@gmail.com"
|
||||||
password := "7g}qznB5bj"
|
password := "pnhkcsahbwsbpyqj"
|
||||||
recipient := "sluzebnicek@pp-kunovice.cz"
|
recipient := "contact.dvorak@gmail.com"
|
||||||
|
|
||||||
m := gomail.NewMessage()
|
m := gomail.NewMessage()
|
||||||
m.SetHeader("From", sender)
|
m.SetHeader("From", sender)
|
||||||
|
|||||||
Reference in New Issue
Block a user