index.php 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. include("../../functions.php");
  3. $con = startdb();
  4. if (!checkSession($con)){
  5. header("Location: /index.php");
  6. exit (-1);
  7. }
  8. if (!checkSession($con)){
  9. header("Location: /index.php");
  10. exit (-1);
  11. }
  12. else{
  13. ?>
  14. <html>
  15. <head>
  16. <meta content="text/html; charset=windows-1252" http-equiv="content-type"/>
  17. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1">
  18. <title>Moderar comentarios - Administracion</title>
  19. <!-- CSS files -->
  20. <link rel="stylesheet" type="text/css" href="/css/ui.css"/>
  21. <link rel="stylesheet" type="text/css" href="/css/blog.css"/>
  22. <!-- CSS for mobile version -->
  23. <link rel="stylesheet" type="text/css" media="(max-width : 990px)" href="/css/m/ui.css"/>
  24. <link rel="stylesheet" type="text/css" media="(max-width : 990px)" href="/css/m/blog.css"/>
  25. <!-- Script files -->
  26. <script type="text/javascript" src="script.js"></script>
  27. <script type="text/javascript" src="/script/ui.js"></script>
  28. </head>
  29. <body>
  30. <?php
  31. include('../../toolbar.php');
  32. ?>
  33. <div id='content'>
  34. <div class="section">
  35. <h3 class="section_title">Moderar comentarios</h3>
  36. <h4 span class="TODO">En construcci&oacute;n</h4>
  37. </div>
  38. </div>
  39. </body>
  40. </html>
  41. <?php
  42. }
  43. ?>