Moved to PHP folder
This commit is contained in:
38
php/application/views/front/confirm.php
Normal file
38
php/application/views/front/confirm.php
Normal file
@ -0,0 +1,38 @@
|
||||
<?php defined('BASEPATH') OR exit('No direct script access allowed'); ?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<?php $this->load->view('front/includes/header-script')?>
|
||||
<title><?=FRONT_TITLE?></title>
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo d-flex">
|
||||
<img src="<?=base_url();?>assets/front/img/logo.jpg" alt="">
|
||||
<span class="d-flex align-items-center justify-content-center">
|
||||
<h1>Order Registration</h1>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<section class="abc-tab">
|
||||
<div class="container">
|
||||
<h1 style="font-size:300%; font-family:verdana;" class="justify-content-center d-flex">
|
||||
<?php
|
||||
$success_msg= $this->session->flashdata('success_msg');
|
||||
$error_msg= $this->session->flashdata('error_msg');
|
||||
if($success_msg) { echo $success_msg; } elseif($error_msg) { echo $error_msg; }
|
||||
?>
|
||||
</h1>
|
||||
<div class="d-flex justify-content-between abc-btn">
|
||||
<div class="p-2"><a href="<?= base_url();?>"><button type="button" class="btn" style="background: #899ec4;">Back To Home</button></a></div>
|
||||
</div>
|
||||
<?php echo form_close(); ?>
|
||||
</div>
|
||||
</section>
|
||||
<!-- Optional JavaScript -->
|
||||
<?php $this->load->view('front/includes/footer-script')?>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user