File:  [LON-CAPA] / loncom / auth / lonlogin.pm
Revision 1.56: download - view: text, annotated - select for diffs
Tue Mar 16 20:42:50 2004 UTC (20 years, 2 months ago) by albertel
Branches: MAIN
CVS tags: HEAD
- We were emitting 2 <html> tags

    1: # The LearningOnline Network
    2: # Login Screen
    3: #
    4: # $Id: lonlogin.pm,v 1.56 2004/03/16 20:42:50 albertel Exp $
    5: #
    6: # Copyright Michigan State University Board of Trustees
    7: #
    8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
    9: #
   10: # LON-CAPA is free software; you can redistribute it and/or modify
   11: # it under the terms of the GNU General Public License as published by
   12: # the Free Software Foundation; either version 2 of the License, or
   13: # (at your option) any later version.
   14: #
   15: # LON-CAPA is distributed in the hope that it will be useful,
   16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
   17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   18: # GNU General Public License for more details.
   19: #
   20: # You should have received a copy of the GNU General Public License
   21: # along with LON-CAPA; if not, write to the Free Software
   22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
   23: #
   24: # /home/httpd/html/adm/gpl.txt
   25: #
   26: # http://www.lon-capa.org/
   27: #
   28: 
   29: package Apache::lonlogin;
   30: 
   31: use strict;
   32: use Apache::Constants qw(:common);
   33: use CGI::Cookie();
   34: use Apache::File ();
   35: use Apache::lonnet();
   36: use Apache::loncommon();
   37: use Apache::lonauth();
   38: use Apache::lonlocal;
   39: 
   40: sub handler {
   41:     my $r = shift;
   42:     &Apache::loncommon::no_cache($r);
   43:     &Apache::lonlocal::get_language_handle($r);
   44:     &Apache::loncommon::content_type($r,'text/html');
   45:     $r->send_http_header;
   46:     return OK if $r->header_only;
   47: 
   48: 
   49: # Are we re-routing?
   50:     if (-e '/home/httpd/html/lon-status/reroute.txt') {
   51: 	&Apache::lonauth::reroute($r);
   52: 	return OK;
   53:     }
   54: 
   55: # -------------------------------- Prevent users from attempting to login twice
   56:     my %cookies=CGI::Cookie->parse($r->header_in('Cookie'));
   57:     my $lonid=$cookies{'lonID'};
   58:     my $cookie;
   59:     if ($lonid) {
   60: 	my $handle=$lonid->value;
   61:         $handle=~s/\W//g;
   62:         my $lonidsdir=$r->dir_config('lonIDsDir');
   63:         if ((-e "$lonidsdir/$handle.id") && ($handle ne '')) {
   64: # Indeed, a valid token is found
   65: 	    my $bodytag=&Apache::loncommon::bodytag('Already logged in');
   66: 	    $r->print(<<ENDFAILED);
   67: <html>
   68: <head>
   69: <title>Already logged in</title>
   70: </head>
   71: $bodytag
   72: <h1>You are already logged in</h1>
   73: <p>Please either <a href="/adm/roles">continue the current session</a> or
   74: <a href="/adm/logout">logout</a>.</p>
   75: <p>
   76: <a href="/adm/loginproblems.html">Problems?</a></p>
   77: </body>
   78: </html>
   79: ENDFAILED
   80:            return OK;
   81: 	}
   82:     }
   83: 
   84: # ---------------------------------------------------- No valid token, continue
   85: 
   86:     &Apache::loncommon::get_unprocessed_cgi
   87:      ($ENV{'QUERY_STRING'}.'&'.$ENV{'request.querystring'},
   88:       ['interface','username','domain','firsturl','localpath','localres']);
   89:  
   90: 
   91: # ----------------------------------------------------------- Process Interface
   92:     $ENV{'form.interface'}=~s/\W//g;
   93: 
   94:     my $textbrowsers=$r->dir_config('lonTextBrowsers');
   95:     my $httpbrowser=$ENV{"HTTP_USER_AGENT"};
   96:     
   97:     foreach (split(/\:/,$textbrowsers)) {
   98: 	if ($httpbrowser=~/$_/i) {
   99: 	    $ENV{'form.interface'}='textual';
  100:         }
  101:     }
  102: 
  103:     my $fullgraph=($ENV{'form.interface'} ne 'textual');
  104:     my $port_to_use=$r->dir_config('lonhttpdPort');
  105:     if (!defined($port_to_use)) {
  106: 	$port_to_use='8080';
  107:     }
  108:     my $iconpath= 'http://'.$ENV{'HTTP_HOST'}.':'.$port_to_use.
  109:                   $r->dir_config('lonIconsURL');
  110:     my $domain  = $r->dir_config('lonDefDomain');
  111:     if (($ENV{'form.domain'}) && 
  112: 	 ($Apache::lonnet::domaindescription{$ENV{'form.domain'}})) {
  113: 	$domain=$ENV{'form.domain'};
  114:     }
  115:     my $role    = $r->dir_config('lonRole');
  116:     my $loadlim = $r->dir_config('lonLoadLim');
  117:     my $servadm = $r->dir_config('lonAdmEMail');
  118:     my $sysadm  = $r->dir_config('lonSysEMail');
  119:     my $lonhost = $r->dir_config('lonHostID');
  120:     my $tabdir  = $r->dir_config('lonTabDir');
  121:     my $include = $r->dir_config('lonIncludes');
  122:     my $expire  = $r->dir_config('lonExpire');
  123:     my $version = $r->dir_config('lonVersion');
  124: 
  125: # --------------------------------------------- Default values for login fields
  126: 
  127:     my $authusername=($ENV{'form.username'}?$ENV{'form.username'}:'');
  128:     my $authdomain=($ENV{'form.domain'}?$ENV{'form.domain'}:$domain);
  129: 
  130: # ---------------------------------------------------------- Determine own load
  131:     my $loadavg;
  132:     {
  133: 	my $loadfile=Apache::File->new('/proc/loadavg');
  134: 	$loadavg=<$loadfile>;
  135:     }
  136:     $loadavg =~ s/\s.*//g;
  137:     my $loadpercent=100*$loadavg/$loadlim;
  138:     my $userloadpercent=&Apache::lonnet::userload();
  139: 
  140: # ------------------------------------------------------- Do the load balancing
  141:     my $otherserver='http://'.$ENV{'SERVER_NAME'};
  142:     my $firsturl=
  143:     ($ENV{'request.firsturl'}?$ENV{'request.firsturl'}:$ENV{'form.firsturl'});
  144: # ---------------------------------------- Are we access server and overloaded?
  145:     if (($role eq 'access') &&
  146: 	(($userloadpercent>100.0)||($loadpercent>100.0))) {
  147:         my $unloaded=Apache::lonnet::spareserver($loadpercent,$userloadpercent);
  148: 	if ($unloaded) { $otherserver=$unloaded; }
  149:     }
  150: 
  151: # ----------------------------------------------------------- Get announcements
  152:     my $announcements=&Apache::lonnet::getannounce();
  153: # -------------------------------------------------------- Set login parameters
  154: 
  155:     my @hexstr=('0','1','2','3','4','5','6','7',
  156:                 '8','9','a','b','c','d','e','f');
  157:     my $lkey='';
  158:     for (0..7) {
  159:         $lkey.=$hexstr[rand(15)];
  160:     }
  161: 
  162:     my $ukey='';
  163:     for (0..7) {
  164:         $ukey.=$hexstr[rand(15)];
  165:     }
  166: 
  167:     my $lextkey=hex($lkey);
  168:     if ($lextkey>2147483647) { $lextkey-=4294967296; }
  169: 
  170:     my $uextkey=hex($ukey);
  171:     if ($uextkey>2147483647) { $uextkey-=4294967296; }
  172: 
  173: # -------------------------------------------------------- Store away log token
  174:     my $logtoken=Apache::lonnet::reply(
  175:        'tmpput:'.$ukey.$lkey.'&'.$firsturl,
  176:        $lonhost);
  177: 
  178: # ------------------- If we cannot talk to ourselves, we are in serious trouble
  179: 
  180:     if ($logtoken eq 'con_lost') {
  181:         my $spares='';
  182:         foreach (keys %Apache::lonnet::hostname) {
  183:             if ($_ ne $lonhost) {
  184:                $spares.='<br /><a href="http://'.$Apache::lonnet::hostname{$_}.
  185: 		 '/adm/login?domain='.$authdomain.'">'.
  186:                  $Apache::lonnet::hostname{$_}.'</a>';
  187:                if ($Apache::lonnet::spareid{$_}) {
  188: 		   $spares.=' (preferred)';
  189:                }
  190: 	   }
  191:         }
  192: 	$r->print(<<ENDTROUBLE);
  193: <html>
  194: <head><title>The LearningOnline Network with CAPA</title></head>
  195: <body bgcolor="#FFFFFF">
  196: <img src="/adm/lonKaputt/lonlogo_broken.gif" align="right" />
  197: <h3>This LON-CAPA server is temporarily not available for login</h3>
  198: <p>Please attempt to login to one of the following servers:</p>$spares
  199: <p>If the problem persists, please contact <tt>$servadm</tt>.</p>
  200: </body>
  201: </html>
  202: ENDTROUBLE
  203:         return OK;
  204:     }
  205: 
  206: # ----------------------------------------------- Apparently we are in business
  207: 
  208:     my $domainlogo=&Apache::loncommon::domainlogo($domain);
  209:     $servadm=~s/\,/\<br \/\>/g;
  210:     $sysadm=~s/\,/\<br \/\>/g;
  211: 
  212: # --------------------------------------------------- Print login screen header
  213:     $r->print(<<ENDHEADER);
  214: <html>
  215: <head>
  216: <meta HTTP-EQUIV="Refresh" CONTENT="$expire; url=/adm/roles" />
  217: <title>The LearningOnline Network with CAPA Login</title>
  218: </head>
  219: ENDHEADER
  220: # ---------------------------------------------------- Serve out DES JavaScript
  221:     {
  222: 	my $jsh=Apache::File->new($include."/londes.js");
  223:         $r->print(<$jsh>);
  224:     }
  225: 
  226: # ----------------------------------------------------------- Front page design
  227:     my $pgbg=
  228:       ($fullgraph?&Apache::loncommon::designparm('login.pgbg',$domain):'#FFFFFF');
  229:     my $font=
  230:       ($fullgraph?&Apache::loncommon::designparm('login.font',$domain):'#000000');
  231:     my $link=
  232:       ($fullgraph?&Apache::loncommon::designparm('login.link',$domain):'#0000FF');
  233:     my $vlink=
  234:       ($fullgraph?&Apache::loncommon::designparm('login.vlink',$domain):'#0000FF');
  235:     my $alink=&Apache::loncommon::designparm('login.alink',$domain);
  236:     my $mainbg=
  237:       ($fullgraph?&Apache::loncommon::designparm('login.mainbg',$domain):'#FFFFFF');
  238:     my $sidebg=
  239:       ($fullgraph?&Apache::loncommon::designparm('login.sidebg',$domain):'#FFFFFF');
  240:     my $logo=&Apache::loncommon::designparm('login.logo',$domain);
  241:     my $img=&Apache::loncommon::designparm('login.img',$domain);
  242: 
  243: # ----------------------------------------------------------------------- Texts
  244: 
  245: my %lt=&Apache::lonlocal::texthash(
  246: 		  'un'  => 'Username',
  247: 		  'pw'  => 'Password',
  248: 		  'dom' => 'Domain',
  249: 		  'perc' => 'percent',
  250: 		  'load' => 'Load',
  251:                   'userload' => 'User Load',
  252:                   'about'  => 'aboutlon.gif',
  253:                   'access' => 'accessbutton.gif',
  254: 		  'auth' => 'userauthentication.gif',
  255: 		  'log' => 'Log in',
  256: 		  'help' => 'Help',
  257: 		  'serv' => 'Server',
  258:                   'servadm' => 'Server Administration',
  259:                   'sysadm' => 'System Administration');
  260: 
  261: 
  262: # ---------------------------------------------------------- Serve rest of page
  263:     $r->print(<<ENDSCRIPT);
  264: 
  265: <body bgcolor="$pgbg" text="$font" link="$link" vlink="$vlink" alink="$alink"
  266:   topmargin=0 leftmargin=0 marginwidth=0 marginheight=0>
  267: 
  268:  <script language="JavaScript">
  269:     function send()
  270:     {
  271: 	this.document.server.elements.uname.value
  272:        =this.document.client.elements.uname.value;
  273: 
  274:         this.document.server.elements.udom.value
  275:        =this.document.client.elements.udom.value;
  276: 
  277:         this.document.server.elements.imagesuppress.value
  278:        =this.document.client.elements.imagesuppress.checked;
  279: 
  280:         this.document.server.elements.embedsuppress.value
  281:        =this.document.client.elements.embedsuppress.checked;
  282: 
  283:         this.document.server.elements.appletsuppress.value
  284:        =this.document.client.elements.appletsuppress.checked;
  285: 
  286:         this.document.server.elements.fontenhance.value
  287:        =this.document.client.elements.fontenhance.checked;
  288: 
  289:         this.document.server.elements.blackwhite.value
  290:        =this.document.client.elements.blackwhite.checked;
  291: 
  292:         this.document.server.elements.remember.value
  293:        =this.document.client.elements.remember.checked;
  294: 
  295:         uextkey=this.document.client.elements.uextkey.value;
  296:         lextkey=this.document.client.elements.lextkey.value;
  297:         initkeys();
  298: 
  299:         this.document.server.elements.upass.value
  300: 	    =crypted(this.document.client.elements.upass.value);
  301: 
  302:         this.document.server.submit();
  303: 	return false;
  304:     }
  305:  </script>
  306: ENDSCRIPT
  307: 
  308:     if ($fullgraph) {
  309: 	$r->print(
  310: 		  '<table width="100%" cellpadding=0 cellspacing=0 border=0>');
  311:     }
  312: 
  313:     $r->print(<<ENDSERVERFORM);
  314:   <form name="server" action="$otherserver/adm/authenticate" method="post" target="_top">
  315:    <input type="hidden" name="logtoken" value="$logtoken" />
  316:    <input type="hidden" name="serverid" value="$lonhost" />
  317:    <input type="hidden" name="interface" value="$ENV{'form.interface'}" />
  318:    <input type="hidden" name="uname" value="" />
  319:    <input type="hidden" name="upass" value="" />
  320:    <input type="hidden" name="udom" value="" />
  321:    <input type="hidden" name="imagesuppress"  value="" />
  322:    <input type="hidden" name="appletsuppress"  value="" />
  323:    <input type="hidden" name="embedsuppress"  value="" />
  324:    <input type="hidden" name="fontenhance"  value="" />
  325:    <input type="hidden" name="blackwhite"  value="" />
  326:    <input type="hidden" name="remember"  value="" />
  327:    <input type="hidden" name="localpath" value="$ENV{'form.localpath'}" />
  328:    <input type="hidden" name="localres" value="$ENV{'form.localres'}" />
  329:   </form>
  330: ENDSERVERFORM
  331:     if ($fullgraph) { $r->print(<<ENDTOP);
  332:   <!-- The LON-CAPA Header -->
  333:   <tr>
  334: 
  335:    <!-- Row 1 Columns 2-4 -->
  336:    <td width="100%" height=75 colspan=4 align="left" valign="top" bgcolor="$pgbg"><img src="$img" border=0 alt="The Learning Online Network with CAPA" /></td>
  337:   </tr>
  338: 
  339:   <!-- The gray bar that starts the two table frames -->
  340:   <tr>
  341: 
  342:    <!-- Row 2 Column 1 -->
  343:    <td width=182 height=27 bgcolor="$sidebg">&nbsp;</td>
  344: 
  345:    <!-- Row 2 Column 2 -->
  346:    <td width=27 height=27 align="left" background="$iconpath/filltop.gif"><img src="$iconpath/upperleft.gif" border=0 alt="" /></td>
  347: 
  348:    <!-- Row 2 Column 3 -->
  349:    <td height=27 background="$iconpath/filltop.gif"><img src="$iconpath/filltop.gif" alt="" /></td>
  350: 
  351:    <!-- Row 2 Column 4 -->
  352:    <td width=27 height=27 align="right" background="$iconpath/filltop.gif"><img src="$iconpath/upperright.gif" border=0 alt="" /></td>
  353:   </tr>
  354:   <tr>
  355:    
  356:    <!-- A cell that will hold the 'access' and 'about' buttons -->
  357:    <!-- Row 3 Column 1 -->
  358:    <td valign="top" height=60 align="center" bgcolor="$sidebg">
  359:     <a href="/adm/login?interface=textual"><img src="$iconpath/$lt{'access'}" border=0 alt="Accessibility Options" /></a>
  360:     <br />
  361:     <a href="/adm/about.html"><img src="$iconpath/$lt{'about'}" border=0 alt="About LON-CAPA" /></a>
  362:    </td>
  363: 
  364:    <!-- The shaded space between the two main columns -->
  365:    <!-- Row 3 Column 2 -->
  366:    <td width=27 height=60 background="$iconpath/fillleft.gif"><img src="$iconpath/fillleft.gif" alt="" /></td>
  367: 
  368:    <!-- The right main column holding the large LON-CAPA logo-->
  369:    <!-- Rows 3-4 Column 3 -->
  370:    <td align="center" valign="top" width="100%" height="100%" bgcolor="$mainbg">
  371:     <center>
  372:      <img src="$logo" alt="" />
  373:     </center>
  374:    </td>
  375: 
  376:    <!-- Row 3 Column 4 -->
  377:    <td width=27 background="$iconpath/fillright.gif"><img src="$iconpath/fillright.gif" alt="" /></td>
  378:   </tr>
  379:   <tr>
  380: 
  381:    <!-- The entry form -->
  382:    <!-- Row 4 Column 1 -->
  383:    <td align="center" valign="middle" bgcolor="$sidebg">
  384: ENDTOP
  385: } else {
  386:     $r->print('<h1>The Learning<i>Online</i> Network with CAPA</h1><h2>Text-based Interface Login</h2>'.$announcements);
  387: }
  388:     $r->print('<form name="client" onsubmit="return(send())">');
  389:     unless ($fullgraph) {
  390:         $r->print(<<ENDACCESSOPTIONS);
  391: <h3>Select Accessibility Options</h3>
  392: <input type="checkbox" name="imagesuppress" /> Suppress rendering of images<br />
  393: <input type="checkbox" name="appletsuppress" /> Suppress Java applets<br />
  394: <input type="checkbox" name="embedsuppress" /> Suppress rendering of embedded multimedia<br />
  395: <input type="checkbox" name="fontenhance" /> Increase font size<br />
  396: <input type="checkbox" name="blackwhite" /> Switch to black and white mode<br />
  397: <p>If you have accessibility needs that are not addressed by this interface, 
  398: please
  399: contact the system administrator at <tt>$sysadm</tt>.</p><br />
  400: <input type="checkbox" name="remember" /> Remember these settings for next login<hr />
  401: ENDACCESSOPTIONS
  402: } else {
  403:     $r->print(<<ENDNOOPT);
  404: <input type="hidden" name="imagesuppress"  value="" />
  405: <input type="hidden" name="embedsuppress"  value="" />
  406: <input type="hidden" name="appletsuppress"  value="" />
  407: <input type="hidden" name="fontenhance"  value="" />
  408: <input type="hidden" name="blackwhite"  value="" />
  409: <input type="hidden" name="remember"  value="" />
  410: ENDNOOPT
  411: }
  412:     $r->print(<<ENDLOGIN);
  413:      <input type="hidden" name="lextkey" value="$lextkey">
  414:      <input type="hidden" name="uextkey" value="$uextkey">
  415: 
  416:      <!-- Start the sub-table for text and input alignment -->
  417:      <table border=0 cellspacing=0 cellpadding=0>
  418:       <tr><td bgcolor="$sidebg" colspan=2><img src="$iconpath/$lt{'auth'}" alt="User Authentication" /></td></tr>
  419:       <tr>
  420:        <td bgcolor="$mainbg"><br /><font size=-1><b>&nbsp;&nbsp;&nbsp;$lt{'un'}:</b></font></td>
  421:        <td bgcolor="$mainbg"><br /><input type="text" name="uname" size="10" value="$authusername" /></td>
  422:       </tr>
  423:       <tr>
  424:        <td bgcolor="$mainbg"><font size=-1><b>&nbsp;&nbsp;&nbsp;$lt{'pw'}:</b></font></td>
  425:        <td bgcolor="$mainbg"><input type="password" name="upass" size="10" /></td>
  426:       </tr>
  427:       <tr>
  428:        <td bgcolor="$mainbg"><font size=-1><b>&nbsp;&nbsp;&nbsp;$lt{'dom'}:</b></font></td>
  429:        <td bgcolor="$mainbg"><input type="text" name="udom" size="10" value="$authdomain" /></td>
  430:       </tr>
  431:       <tr>
  432:        <td bgcolor="$mainbg">&nbsp;&nbsp;&nbsp;<a href="/adm/loginproblems.html">$lt{'help'}</a></td>
  433:        <td bgcolor="$mainbg" valign="bottom" align="center">
  434:         <br />
  435:         <input type="submit" value="$lt{'log'}" />
  436:        </td>
  437:       </tr>
  438:      </table>
  439:      <!-- End sub-table -->
  440:     </form>
  441: ENDLOGIN
  442:     if ($fullgraph) {
  443: 	$r->print(<<ENDDOCUMENT);
  444:    </td>
  445: 
  446:    <!-- Row 4 Column 2 -->
  447:    <td width=27 background="$iconpath/fillleft.gif"><img src="$iconpath/fillleft.gif" alt="" /></td>
  448: 
  449:    <!-- Row 4 Column 3 -->
  450: <td bgcolor="$mainbg">$announcements</td>
  451: 
  452:    <!-- Row 4 Column 4 -->
  453:    <td width=27 background="$iconpath/fillright.gif"><img src="$iconpath/fillright.gif" alt="" /></td>
  454:   </tr>
  455:   <tr>
  456: 
  457:    <!-- Row 5 Column 1 -->
  458:    <td bgcolor="$sidebg" valign="middle" align="left">
  459:      <br />
  460:      <table border=0 cellspacing=0 cellpadding=0>
  461:       <tr>
  462:        <td bgcolor="$sidebg" align="left" valign="top">
  463:         <small><b>&nbsp;&nbsp;&nbsp;$lt{'dom'}:&nbsp;</b></small>
  464:        </td>
  465:        <td bgcolor="$sidebg" align="left" valign="top">
  466:         <small><tt>&nbsp;$domain</tt></small>
  467:        </td>
  468:       </tr>
  469:       <tr>
  470:        <td bgcolor="$sidebg" align="left" valign="top">
  471:         <small><b>&nbsp;&nbsp;&nbsp;$lt{'serv'}:&nbsp;</b></small>
  472:        </td>
  473:        <td bgcolor="$sidebg" align="left" valign="top">
  474:         <small><tt>&nbsp;$lonhost ($role)</tt></small>
  475:        </td>
  476:       </tr>
  477:       <tr>
  478:        <td bgcolor="$sidebg" align="left" valign="top">
  479:         <small><b>&nbsp;&nbsp;&nbsp;$lt{'load'}:&nbsp;</b></small>
  480:        </td>
  481:        <td bgcolor="$sidebg" align="left" valign="top">
  482:         <small><tt>&nbsp;$loadpercent $lt{'perc'}</tt></small>
  483:        </td>
  484:       </tr>
  485:       <tr>
  486:        <td bgcolor="$sidebg" align="left" valign="top">
  487:         <small><b>&nbsp;&nbsp;&nbsp;$lt{'userload'}:&nbsp;</b></small>
  488:        </td>
  489:        <td bgcolor="$sidebg" align="left" valign="top">
  490:         <small><tt>&nbsp;$userloadpercent $lt{'perc'}</tt></small>
  491:        </td>
  492:       </tr>
  493:      </table>
  494:      <br />
  495:     <small>
  496:      <b>&nbsp;&nbsp;&nbsp;$lt{'sysadm'}:</b><br />
  497:      <tt>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$sysadm</tt><br />
  498:      <b>&nbsp;&nbsp;&nbsp;$lt{'servadm'}:</b><br />
  499:      <tt>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$servadm</tt><br />&nbsp;<br />
  500:      &nbsp;&nbsp;&nbsp;$version
  501:     </small>
  502:    </td>
  503: 
  504:    <!-- Row 5 Column 2 -->
  505:    <td width=27 background="$iconpath/fillleft.gif"><img src="$iconpath/fillleft.gif" alt="" /></td>
  506: 
  507:    <!-- Row 5 Column 3 -->
  508:    <td width="100%" valign="bottom" bgcolor="$mainbg">
  509: $domainlogo
  510: </td>
  511: 
  512:    <!-- Row 5 Column 4 -->
  513:    <td width=27 background="$iconpath/fillright.gif"><img src="$iconpath/fillright.gif" alt="" /></td>
  514:   </tr>
  515:   <tr>
  516: 
  517:    <!-- Row 6 Column 1 -->
  518:    <td bgcolor="$sidebg">&nbsp;</td>
  519: 
  520:    <!-- Row 6 Column 2 -->
  521:    <td align="left" background="$iconpath/fillbottom.gif"><img src="$iconpath/lowerleft.gif" alt="" /></td>
  522: 
  523:    <!-- Row 6 Column 3 -->
  524:    <td background="$iconpath/fillbottom.gif"><img src="$iconpath/fillbottom.gif" alt="" /></td>
  525: 
  526:    <!-- Row 6 Column 4 -->
  527:    <td align="right" background="$iconpath/fillbottom.gif"><img src="$iconpath/lowerright.gif" alt="" /></td>
  528:   </tr>
  529:  </table>
  530: 
  531: <script>
  532: // the if prevents the script error if the browser can't handle this
  533: if ( document.client.uname ) { document.client.uname.focus(); }
  534: </script>
  535: 
  536: ENDDOCUMENT
  537: }
  538:     $r->print('</body></html>');
  539:     return OK;
  540: } 
  541: 
  542: 1;
  543: __END__

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>