Advertisement
jcoutie

index.php

May 22nd, 2018
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.56 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>XLX Internal Dashboard</title>
  5.     <meta charset="UTF-8">
  6.     <meta name="viewport" content="width=device-width, initial-scale=1">
  7.     <script src="js/jquery-1.11.1.min.js"></script>
  8.     <link rel="stylesheet" href="css/jquery.mobile-1.4.2.min.css" />
  9.     <script src="js/jquery.mobile-1.4.2.min.js"></script>
  10. </head>
  11. <body>
  12.     <?php
  13.         include 'core/init.php';
  14.         if(loggedin()==FALSE) {
  15.             include 'login.php';
  16.         } else {
  17.             include 'landingpage.php';
  18.             include 'customerlookup.php';
  19.             include 'barcode.php';
  20.         }
  21.     ?>
  22. </body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement