29 lines
1.1 KiB
PHP
29 lines
1.1 KiB
PHP
<section class="page-hero">
|
|
<p class="eyebrow">Buchungsanfrage</p>
|
|
<h1>Fotobox jetzt anfragen.</h1>
|
|
<p>
|
|
Wählen Sie Ihren Zeitraum, legen Sie Leistungsart und Zahlungsart fest und senden Sie Ihre Anfrage direkt an die Verwaltung.
|
|
</p>
|
|
</section>
|
|
|
|
<section class="section split-section">
|
|
<article class="content-card emphasis-card">
|
|
<p class="eyebrow">Vor dem Absenden</p>
|
|
<h2>Was wir für eine saubere Bearbeitung brauchen</h2>
|
|
<ul class="check-list">
|
|
<?php foreach ($bookingChecklist as $item): ?>
|
|
<li><?= h($item) ?></li>
|
|
<?php endforeach; ?>
|
|
</ul>
|
|
<div class="contact-card">
|
|
<strong>Rückfragen</strong>
|
|
<a href="mailto:<?= h($company['email']) ?>"><?= h($company['email']) ?></a>
|
|
<a href="tel:<?= h($company['phone']) ?>"><?= h($company['phone']) ?></a>
|
|
</div>
|
|
</article>
|
|
<article class="content-card booking-card">
|
|
<?php require dirname(__DIR__) . '/partials/public-booking-form.php'; ?>
|
|
</article>
|
|
</section>
|
|
|