/var/www/hkosl.com/ifapc/html_20210817/IFAPC2021/application/views/main/message.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php include_once('templates/top.php'); ?>

<!-- Content
        ============================================= -->
<section id="content">
    <div class="content-wrap">
        <div class="container clearfix">
            <!-- pagelocation -->
            <div class="subcontent mt-30">
                <div class="container">
                    <div class="status text-center">
                        <img src="<?php echo assets_url('main/img/' $_SESSION['msg_type'] . '.png'); ?>">
                        <h1><?php echo $_SESSION[$_SESSION['msg_type'] . '_msg']; ?></h1>
                    <?php if (!empty($_SESSION[$_SESSION['msg_type'] . '_sub_msg'])) { ?>
                        <p><?php echo $_SESSION[$_SESSION['msg_type'] . '_sub_msg']; ?></p>
                        <?php unset($_SESSION[$_SESSION['msg_type'] . '_sub_msg']); ?>
                    <?php ?>
                    <?php if (!empty($_SESSION['msg_back_url'])) { ?>
                        <a href="<?php echo $_SESSION['msg_back_url']; ?>" class="btn btn-default"><?php echo __('Back'); ?></a>
                        &nbsp;&nbsp;&nbsp;
                        <?php unset($_SESSION['msg_back_url']); ?>
                    <?php ?>
                        <a href="<?php echo get_redirect_url(); ?>" class="btn btn-default"><?php echo __('Home'); ?></a>
                    </div>
                </div>
            </div>
<?php include_once('templates/bottom.php'); ?>