Advertisement
Guest User

Untitled

a guest
Dec 13th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.53 KB | None | 0 0
  1. <?php
  2. /*
  3. UserSpice 4
  4. An Open Source PHP User Management System
  5. by the UserSpice Team at http://UserSpice.com
  6.  
  7. This program is free software: you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation, either version 3 of the License, or
  10. (at your option) any later version.
  11.  
  12. This program is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. GNU General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. */
  20. require_once 'users/init.php';
  21. require_once $abs_us_root.$us_url_root.'users/includes/template/prep.php';
  22. if (!securePage($_SERVER['PHP_SELF'])){die();}
  23. ?>
  24.  
  25. <?php
  26. //php goes here
  27. ?>
  28.  
  29. <div id="page-wrapper">
  30. <div class="container">
  31. <div class="row">
  32. <div class="col-sm-12">
  33.  
  34. </div>
  35. </div>
  36. </div>
  37. </div>
  38.  
  39.  
  40. <?php require_once $abs_us_root.$us_url_root.'usersc/templates/'.$settings->template.'/container_close.php'; //custom template container ?>
  41.  
  42. <!-- footers -->
  43. <?php require_once $abs_us_root.$us_url_root.'users/includes/page_footer.php'; // the final html footer copyright row + the external js calls ?>
  44.  
  45. <!-- Place any per-page javascript here -->
  46.  
  47. <?php require_once $abs_us_root.$us_url_root.'usersc/templates/'.$settings->template.'/footer.php'; //custom template footer?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement