A new, object-oriented, better vesion of μForum
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
1.5 KiB

  1. <!DOCTYPE html>
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  4. <title><?php echo $this->TPL['meta_title']; ?></title>
  5. <meta name="author" content="Piotr Dergun" />
  6. <meta name="generator" content="medit/1.2.0" />
  7. <link rel="stylesheet" href="templates/styles.css" type="text/css" />
  8. <link rel="stylesheet" href="templates/admin/admin.css" type="text/css" />
  9. </head>
  10. <body>
  11. <div id="container">
  12. <div id="top">
  13. <h1>&micro;Forum ACP</h1>
  14. </div>
  15. <div id="menu">
  16. <ul>
  17. <li><a href="index.php?mode=admin">ACP Main</a></li>
  18. <li><a href="index.php?mode=admin&amp;submode=config">Configuration</a></li>
  19. <li><a href="index.php?mode=admin&amp;submode=forums">Forums</a></li>
  20. <li><a href="index.php?mode=admin&amp;submode=users">Users</a></li>
  21. <li><a href="index.php?mode=admin&amp;submode=banlist">Banlist</a></li>
  22. <li><a href="index.php">Go to forum</a></li>
  23. </ul>
  24. </div>
  25. <br>
  26. <div id="userpanel">
  27. <?php if ( $this->TPL['is_logged']) { ?>
  28. You are logged as: <span style="font-weight: bold"><?php echo $this->TPL['my_nick'] ?></span>
  29. <?php } else { ?>
  30. Welcome Guest! You are not logged.
  31. <?php } ?><br>
  32. Actual time: <span style="font-weight: bold"><?php echo $this->TPL['actual_time']; ?></span><br>
  33. </div>
  34. <br>
  35. <div id="navi_bar">
  36. <?php
  37. for ($i=0; $i<count($this->TPL['nav']); $i++)
  38. {
  39. echo '<a href="'.$this->TPL['nav'][$i]['url'].'" class="navigation">'.$this->TPL['nav'][$i]['name'].'</a>';
  40. if ($i < count($this->TPL['nav'])-1)
  41. echo ' &raquo; ';
  42. }
  43. ?>
  44. </div>