diff options
author | Ivan Kohler <ivan@freeside.biz> | 2018-10-01 12:03:01 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2018-10-01 12:03:01 -0700 |
commit | d5988a9f7a3617de33da3058f2e9f1151b24420e (patch) | |
tree | 3ed8d80cd6a81f160c76c90fcf089e81fe7ffddf /ng_selfservice/index.php | |
parent | 1ab515df162a76347d8146cae4ff34656cc4bcd3 (diff) | |
parent | b6088672c87e2c5984183326b4c0e2d9bd6c34f6 (diff) |
Merge branch 'master' of git.freeside.biz:/home/git/freeside
Diffstat (limited to 'ng_selfservice/index.php')
-rw-r--r-- | ng_selfservice/index.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/ng_selfservice/index.php b/ng_selfservice/index.php index 62b6562c8..06e8fc13b 100644 --- a/ng_selfservice/index.php +++ b/ng_selfservice/index.php @@ -3,7 +3,7 @@ require('freeside.class.php'); $freeside = new FreesideSelfService(); -$login_info = $freeside->login_info(); +$login_info = $freeside->login_info( array('session_id' => $_COOKIE['session_id'],)); extract($login_info); @@ -60,7 +60,7 @@ if ( $error ) { <? if ( $phone_login ) { ?> <B>OR</B><BR><BR> - + <FORM ACTION="process_login.php" METHOD=POST> <INPUT TYPE="hidden" NAME="session" VALUE="login"> <TABLE BGCOLOR="#c0c0c0" BORDER=0 CELLSPACING=2 CELLPADDING=0> @@ -85,6 +85,10 @@ if ( $error ) { <? } ?> +<!-- +<BR><BR><A HREF="ip_login.php">Login by IP (<? echo $_SERVER['REMOTE_ADDR']; ?>) to make a payment.</A> +--> + <? include('elements/footer.php'); ?> |