summaryrefslogtreecommitdiff
path: root/fs_selfservice/php/main.php
diff options
context:
space:
mode:
Diffstat (limited to 'fs_selfservice/php/main.php')
-rw-r--r--fs_selfservice/php/main.php39
1 files changed, 0 insertions, 39 deletions
diff --git a/fs_selfservice/php/main.php b/fs_selfservice/php/main.php
deleted file mode 100644
index b34a47730..000000000
--- a/fs_selfservice/php/main.php
+++ /dev/null
@@ -1,39 +0,0 @@
-<?php
-
-require('freeside.class.php');
-$freeside = new FreesideSelfService();
-
-$session_id = $_GET['session_id'];
-
-$response = $freeside->customer_info( array(
- 'session_id' => $session_id,
-) );
-
-$error = $response['error'];
-
-if ( $error ) {
- header('Location:login.php?error='. urlencode($error));
- die();
-}
-
-extract($response);
-
-?>
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
-<HTML>
- <HEAD>
- <TITLE>My Account</TITLE>
- </HEAD>
- <BODY>
- <H1>My Account</H1>
-
- Hello, <?php echo htmlspecialchars($name); ?><BR><BR>
-
- <?php echo $small_custview; ?>
-
- <BR>
-
- <A HREF="order_renew.php?session_id=<?php echo $session_id; ?>">Renew early</A>
-
- </BODY>
-</HTML>