Relative paths in booking_page.php

This commit is contained in:
alextselegidis 2021-11-16 10:15:23 +01:00
parent f0109226ce
commit 5fb2fcdf71

View file

@ -26,23 +26,23 @@
<!-- Booking Cancellation Frame --> <!-- Booking Cancellation Frame -->
<?php require __DIR__ . '/booking_cancellation.php' ?> <?php require 'booking_cancellation.php' ?>
<!-- Select Service & Provider --> <!-- Select Service & Provider -->
<?php require __DIR__ . '/booking_step_1.php' ?> <?php require 'booking_step_1.php' ?>
<!-- Pick An Appointment Date --> <!-- Pick An Appointment Date -->
<?php require __DIR__ .'/booking_step_2.php' ?> <?php require 'booking_step_2.php' ?>
<!-- Enter Customer Information --> <!-- Enter Customer Information -->
<?php require __DIR__ . '/booking_step_3.php' ?> <?php require 'booking_step_3.php' ?>
<!-- Appointment Data Confirmation --> <!-- Appointment Data Confirmation -->
<?php require __DIR__ . '/booking_step_4.php' ?> <?php require 'booking_step_4.php' ?>
<?php section('content') ?> <?php section('content') ?>