I just added this to phpinclude (under styles in the cp) and put $adminpanel in the footer where I wanted the link to show.
Code:
if ($bbuserinfo[usergroupid]==6) {
//admins
$adminpanel = "<a href=\"admin/index.php\">Administration Panel</a><br>";
} else if (($bbuserinfo[usergroupid] ==5) || ($bbuserinfo[usergroupid] ==7)) {
//mods and super mods
$adminpanel = "<a href=\"mod/index.php\">Moderation Panel</a><br>";
} else {
//everyone else
$adminpanel = "";
}