RT# 39340 - removed min_selfservice dir and merged into ng_selfservice
[freeside.git] / ng_selfservice / no_access.php
1 <!DOCTYPE html>
2 <HTML>
3   <HEAD>
4     <TITLE>
5       Access Denied
6     </TITLE>
7     <link href="css/default.css" rel="stylesheet" type="text/css"/>
8     <script type="text/javascript" src="js/jquery.js"></script>
9     <script type="text/javascript" src="js/menu.js"></script>
10   </HEAD>
11   <BODY>
12     <FONT SIZE=5>Access Denied</FONT>
13     <BR><BR>
14 <? $current_menu = 'no_access.php'; include('elements/menu.php'); ?>
15 <?
16
17 $customer_info = $freeside->customer_info_short( array(
18   'session_id' => $_COOKIE['session_id'],
19 ) );
20
21 if ( isset($customer_info['error']) && $customer_info['error'] ) {
22   $error = $customer_info['error'];
23   header('Location:index.php?error='. urlencode($error));
24   die();
25 }
26
27 extract($customer_info);
28
29 ?>
30
31 <P>Sorry you do not have access to the page you are trying to reach.</P>
32
33 <? include('elements/menu_footer.php'); ?>
34 <? include('elements/footer.php'); ?>