File: /mnt/data/smarthr-co-in/demo/codeigniter/template/app/Views/error-404.php
<?= $this->extend('layouts/mainlayout') ?>
<?= $this->section('content') ?>
<!-- ========================
Start Page Content
========================= -->
<!-- Start Content -->
<div class="container">
<div>
<div class="row justify-content-center align-items-center">
<div class="col-md-8 d-flex justify-content-center align-items-center mx-auto">
<div>
<div class="p-4 text-center">
<img src="<?php echo base_url(); ?>assets/img/logo.svg" alt="logo" class="img-fluid">
</div>
<div class="error-images mb-5">
<img src="<?php echo base_url(); ?>assets/img/bg/error-404.svg" alt="image" class="img-fluid">
</div>
<div class="text-center">
<h1 class="mb-3">Oops, something went wrong</h1>
<p class="fs-16 text-center">Error 404 Page not found. Sorry the page you looking <br> for doesn’t exist or has been moved</p>
<div class="d-flex justify-content-center pb-4">
<a href="<?php echo base_url(); ?>index" class="btn btn-primary d-flex align-items-center "><i class="ti ti-arrow-left me-2"></i>Back to Dashboard</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End Content -->
<!-- ========================
End Page Content
========================= -->
<?= $this->endSection() ?>