Add service alert viewer for all users
[busui.git] / servicealerts / index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
include ('../include/common.inc.php');
 
include_header("Service Alerts", "index");
echo '<ul data-role="listview" data-theme="e" data-groupingtheme="e">';
        
 if ($_SESSION['authed'] == true) {
        echo'   <li><a href="servicealert_editor.php"><h3>servicealert_editor</h3>
                <p>servicealert_editor</p></a></li>';
          }
        echo'   <li><a href="servicealert_viewer.php"><h3>Service Alert Viewer</h3>
                <p>Browse current network alerts</p></a></li>';
          
           echo'  </ul>';
 
?>          </div>
<?php
include_footer()
?>