Files
4WDCSA.co.za/404.php
twotalesanimation 110c853945 Refactor: Update all remaining pages to use unified header template
- Updated 39 pages from old header01.php and header02.php includes
- All pages now use single configurable header.php with $headerStyle variable
- Light style (default): Most pages (login, register, trips, courses, etc.)
- Dark style: Coming from header01 original usage

Pages updated:
  - Admin pages: admin_*.php (10 files)
  - Booking pages: bookings.php, campsite_booking.php, etc.
  - Content pages: blog.php, blog_details.php, contact.php, events.php, etc.
  - User pages: account_settings.php, membership*.php, register.php, etc.
  - Utility pages: 404.php, payment_confirmation.php, reset_password.php, etc.

All pages now maintain single header template source - easier to update navigation, styles, and functionality across the entire site.
2025-12-03 16:55:32 +02:00

46 lines
2.3 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
$headerStyle = 'light';
include_once('header.php');
?>
<!-- 404 Error Area start -->
<section class="error-area pt-70 pb-100 rel z-1">
<div class="container">
<div class="row align-items-center justify-content-between">
<div class="col-xl-5 col-lg-6">
<div class="error-content rmb-55" data-aos="fade-left" data-aos-duration="1500" data-aos-offset="50">
<h1>OOPS! </h1>
<div class="section-title mt-15 mb-25">
<h2>This Page Cant be Found</h2>
</div>
<!-- <p>Best features to include on business landing page are those that quickly convey your value proposition, build trust, and encourage action. Here are six essential features</p> -->
<!-- <form class="newsletter-form mt-40 mb-50" action="#">
<input id="news-email" type="text" placeholder="Search keyword" required>
<button type="submit" class="theme-btn bgc-secondary style-two">
<span data-hover="Search">Search</span>
<i class="fal fa-arrow-right"></i>
</button>
</form>
<div class="keywords">
<a href="blog.html">Travel</a>
<a href="blog.html">Luxury Hotel</a>
<a href="blog.html">Indonesia</a>
<a href="blog.html">Sea Beach</a>
<a href="blog.html">Camping</a>
<a href="blog.html">Hiking</a>
<a href="blog.html">Fishing</a>
</div> -->
</div>
</div>
<div class="col-xl-5 col-lg-6">
<div class="error-images" data-aos="fade-right" data-aos-duration="1500" data-aos-offset="50">
<img src="assets/images/404/lost.jpg" alt="404 Error">
</div>
</div>
</div>
</div>
</section>
<!-- 404 Error Area end -->
<?php include_once("insta_footer.php"); ?>