summaryrefslogtreecommitdiff
path: root/ng_selfservice/main.php
blob: 6c12d526053675a448509c9d4c61a6f968d9a4b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<? $title ='My Account'; include('elements/header.php'); ?>
<? $current_menu = 'main.php'; include('elements/menu.php'); ?>
<?

$customer_info = $freeside->customer_info_short( array(
  'session_id' => $_COOKIE['session_id'],
) );


if ( isset($customer_info['error']) && $customer_info['error'] ) {
  $error = $customer_info['error'];
  header('Location:index.php?error='. urlencode($error));
  die();
}

extract($customer_info);

?>

<P>Hello <? echo htmlspecialchars($name); ?></P>

<? if ( $signupdate_pretty ) { ?>
  <P>Thank you for being a customer since <? echo $signupdate_pretty; ?></P>
<? } ?>

<P>Your current balance is: <B>$<? echo $balance ?></B></P>

<? echo $announcement ?>

<!--
your open invoices if you have any & payment link if you have one.  more insistant if you're late?
<BR><BR>

your tickets.  some notification if there's new responses since your last login 
<BR><BR>

anything else?
-->

<? include('elements/menu_footer.php'); ?>
<? include('elements/footer.php'); ?>