Files
magico.prototype/prototype/magico-pracownik/select-company.php
T
2026-05-28 12:56:03 +02:00

59 lines
1.9 KiB
PHP

<?php
$enablePrototypeComments = true;
include 'header.php';
?>
<div class="app-topbar">
<div class="d-flex align-items-center">
<a href="index.php" class="text-dark me-2"><i class='bx bx-arrow-back fs-4'></i></a>
<h1 class="app-title">Wybierz firmę</h1>
</div>
</div>
<div class="container py-4">
<p class="text-muted mb-4">Wybierz firmę, dla której chcesz dzisiaj pracować, aby kontynuować logowanie.</p>
<div class="card-custom overflow-hidden">
<a href="home.php" class="company-list-item">
<div class="company-logo-placeholder bg-primary-custom">
A
</div>
<div class="flex-grow-1">
<h6 class="mb-0 fw-bold">Acme Corp Sp. z o.o.</h6>
<small class="text-muted">NIP: 1234567890</small>
</div>
<div>
<i class='bx bx-chevron-right fs-3 text-muted'></i>
</div>
</a>
<a href="home.php" class="company-list-item">
<div class="company-logo-placeholder bg-dark text-white">
G
</div>
<div class="flex-grow-1">
<h6 class="mb-0 fw-bold">Global Industries</h6>
<small class="text-muted">NIP: 9876543210</small>
</div>
<div>
<i class='bx bx-chevron-right fs-3 text-muted'></i>
</div>
</a>
<a href="home.php" class="company-list-item">
<div class="company-logo-placeholder bg-info text-white">
M
</div>
<div class="flex-grow-1">
<h6 class="mb-0 fw-bold">Magico Sp. z o.o.</h6>
<small class="text-muted">Oddział Główny</small>
</div>
<div>
<i class='bx bx-chevron-right fs-3 text-muted'></i>
</div>
</a>
</div>
</div>
<?php include 'footer.php'; ?>