PHP Classes

File: APP/views/users/index.php

Recommend this page to a friend!
  Classes of Taranpreet Singh   PHP End Game Engine Website   APP/views/users/index.php   Download  
File: APP/views/users/index.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP End Game Engine Website
Build Web sites for promoting games
Author: By
Last change:
Date: 4 years ago
Size: 737 bytes
 

Contents

Class file image Download
<?php
use APP\Helpers\URL_Helper as URL;
use
APP\Core\Session as Session;
?>
<!-- Page top section -->
<section class="page-top-section set-bg" data-setbg="<?= URL_ROOT ?>img/page-top-bg/4.jpg">
    <div class="page-info">
        <h2>Welcome, <?= Session::get('email') ?></h2>
        <div class="site-breadcrumb">
            <a href="<?= URL::baseURL('home') ?>">Home</a> /
            <a href="#">Users</a> /
            <span><?= Session::get('email') ?> Index</span>
        </div>
    </div>
</section>
<!-- Page top end-->

<section class="contact-page">
    <div class="container">
        <div class="row">
            <div class="text-white">
                  Welcome
            </div>
        </div>
    </div>
</section>