tweetmonitor/admin/index.php

54 lines
1.5 KiB
PHP
Raw Normal View History

2016-02-09 13:23:43 +00:00
<?php
include('../config/config.php');
include('html/html.inc.php');
include('includes/functions.php');
checkLoginAdmin();
startHtml($title = "Dashboard");
tophead($title);
leftNav();
?>
<?php
if ( isset($_SESSION['succesMessage']) )
{
successMsg($_SESSION['succesMessage']);
unset($_SESSION['succesMessage']);
}
?>
<section id="main" class="column">
<article class="module width_quarter">
<header>
<h3>Profile Management</h3>
</header>
<ul>
<li class="icn_edit_article"><a href="<?php echo ADMIN_URL;?>change-email.php">Change Email</a></li>
<li class="icn_edit_article"><a href="<?php echo ADMIN_URL;?>change-password.php">Change Password</a></li>
</ul>
</article>
<article class="module width_quarter">
<header>
<h3>Twitter Accounts Management</h3>
</header>
<ul>
<li class="icn_new_article"><a href="<?php echo ADMIN_URL;?>add-account.php">Add Twitter Account</a></li>
<li class="icn_view"><a href="<?php echo ADMIN_URL;?>view-accounts.php">View Twitter Accounts</a></li>
</ul>
</article>
<article class="module width_quarter">
<header>
<h3>Deleted Tweets Management</h3>
</header>
<ul>
<li class="icn_view"><a href="<?php echo ADMIN_URL;?>view-tweets.php">View Deleted Tweets</a></li>
</ul>
</article>
<div class="spacer"></div>
</section>
<?php
endHtml();
?>