3 require('freeside.class.php');
4 $freeside = new FreesideSelfService();
6 $response = $freeside->login( array(
7 'email' => strtolower($_POST['email']),
8 'username' => strtolower($_POST['username']),
9 'domain' => strtolower($_POST['domain']),
10 'password' => $_POST['password'],
13 #error_log("[login] received response from freeside: $response");
15 $error = $response['error'];
19 header('Location:index.php?username='. urlencode($username).
20 '&domain='. urlencode($domain).
21 '&email='. urlencode($email).
22 '&error='. urlencode($error)
30 $session_id = $response['session_id'];
32 error_log("[login] logged into freeside with session_id=$session_id, setting cookie");
34 // now what? for now, always redirect to the main page (or the select a
35 // customer diversion).
36 // eventually, other options?
38 setcookie('session_id', $session_id);
40 if ( $response['custnum'] || $response['svcnum'] ) {
42 header("Location:main.php");
45 } elseif ( $response['customers'] ) {
46 var_dump($response['customers']);
49 <? $title ='Select customer'; include('elements/header.php'); ?>
50 <? include('elements/error.php'); ?>
52 <FORM NAME="SelectCustomerForm" ACTION="process_select_cust.php" METHOD=POST>
53 <INPUT TYPE="hidden" NAME="action" VALUE="switch_cust">
55 <TABLE BGCOLOR="#c0c0c0" BORDER=0 CELLSPACING=2 CELLPADDING=0>
58 <TH ALIGN="right">Customer </TH>
60 <SELECT NAME="custnum" ID="custnum" onChange="custnum_changed()">
61 <OPTION VALUE="">Select a customer
62 <? foreach ( $response['customers'] AS $custnum => $customer ) { ?>
63 <OPTION VALUE="<? echo $custnum ?>"><? echo htmlspecialchars( $customer ) ?>
70 <TD COLSPAN=2 ALIGN="center"><INPUT TYPE="submit" ID="submit" VALUE="Select customer" DISABLED></TD>
76 <SCRIPT TYPE="text/javascript">
78 function custnum_changed () {
79 var form = document.SelectCustomerForm;
80 if ( form.custnum.selectedIndex > 0 ) {
81 form.submit.disabled = false;
83 form.submit.disabled = true;
89 <? include('elements/footer.php'); ?>
95 // die 'login successful, but unrecognized info (no custnum, svcnum or customers)';