summaryrefslogtreecommitdiff
path: root/min_selfservice/index.php
blob: 25ec33472fe6e3ca789f1514d68908779a3b944c (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
<?
  $error = $_GET['error'];
  if ( $error ) {
    $username = $_GET['username'];
    $domain   = $_GET['domain'];
    $title ='Login Error'; 
    include('elements/header.php');
    include('elements/error.php');
?>
    <TABLE BORDER=0 CELLSPACING=2 CELLPADDING=0>
      <TR>
        <TD>
          Sorry we were unable to locate your account with MAC address <? echo $username; ?>  .
        </TD>
      </TR>
    </TABLE>
<?
    include('elements/footer.php');
  }
  else { include('login.php'); }
?>

<? #include('login.php'); ?>


<?
#require('freeside.class.php');
#$freeside = new FreesideSelfService();
#
#$login_info = $freeside->login_info();
#
#extract($login_info);
#
#$error = $_GET['error'];
#if ( $error ) {
#  $username = $_GET['username'];
#  $domain   = $_GET['domain'];
#}

?>