This commit was generated by cvs2svn to compensate for changes in r4888,
[freeside.git] / fs_selfservice / FS-SelfService / cgi / myaccount.html
1 <HTML><HEAD><TITLE>MyAccount</TITLE></HEAD>
2 <BODY BGCOLOR="#eeeeee"><FONT SIZE=5>MyAccount</FONT><BR><BR>
3 <%= $url = "$selfurl?session=$session_id;action="; ''; %>
4 <%= include('myaccount_menu') %>
5 <TD VALIGN="top">
6
7 Hello <%= $name %>!<BR><BR>
8 <%= $small_custview %>
9 <BR>
10 <%= if ( $balance > 0 ) {
11   $OUT .= qq! <B><A HREF="${url}make_payment">Make a payment</A></B><BR><BR>!;
12 } %>
13 <%=
14   if ( @open_invoices ) {
15     $OUT .= '<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=2 BGCOLOR="#eeeeee">'.
16             '<TR><TH BGCOLOR="#ff6666" COLSPAN=5>Open Invoices</TH></TR>';
17     my $link = qq!<A HREF="<%= $url %>myaccount!;
18     my $col1 = "ffffff";
19     my $col2 = "dddddd";
20     my $col = $col1;
21
22     foreach my $invoice ( @open_invoices ) {
23       my $td = qq!<TD BGCOLOR="#$col">!;
24       my $a=qq!<A HREF="${url}view_invoice;invnum=!. $invoice->{'invnum'}. '">';
25       $OUT .=
26         "<TR>$td${a}Invoice #". $invoice->{'invnum'}. "</A></TD>$td</TD>".
27         "$td$a". $invoice->{'date'}. "</A></TD>$td</TD>".
28         qq!<TD BGCOLOR="#$col" ALIGN="right">$a\$!. $invoice->{'owed'}.
29           '</A></TD>'.
30         '</TR>';
31       $col = $col eq $col1 ? $col2 : $col1;
32     }
33     $OUT .= '</TABLE>';
34   } else {
35     $OUT .= 'You have no outstanding invoices.<BR><BR>';
36   }
37 %>
38
39 </TD></TR></TABLE>
40 <HR>
41 <FONT SIZE="-2">powered by <a href="http://www.sisd.com/freeside">freeside</a></FONT>
42 </BODY></HTML>
43
44
45