D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home3
/
encodto1
/
public_html
/
encoadminders
/
Filename :
index.php
back
Copy
<?php session_start(); include 'config.php'; if (!isset($_SESSION['admin_name'])) { echo '<script>window.location.href = "login.php";</script>'; exit; } ?> <!DOCTYPE html> <html lang="en"> <head> <?php require('style.php'); ?> <title>Encoders Unlimited</title> </head> <body> <?php include('sidebar.php') ?> <div class="home-section"> <div class="dashboard-container"> <div class="banner-left"> <div class="banner-container"> <div class="banner-top"> <h3>Welcome Encoders Unlimited</h3> </div> <div class="banner-upper"></div> <div class="banner-lower"> <a href="logo.php"><div class="banner-lower-one"> </div></a> <a href="blog.php"><div class="banner-lower-two"> </div></a> <a href="enquiry"><div class="banner-lower-three"> </div></a> </div> </div> </div> <div class="banner-right"> <div class="banner-right-top"> </div> <div class="banner-right-bottom"></div> </div> </div> <?php include('footer.php') ?> </div> </body> </html>