Annotation of loncom/auth/lonlogin.pm, revision 1.125
1.1 albertel 1: # The LearningOnline Network
2: # Login Screen
1.11 www 3: #
1.125 ! raeburn 4: # $Id: lonlogin.pm,v 1.124 2009/07/22 21:51:03 raeburn Exp $
1.11 www 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: #
1.14 albertel 28:
1.1 albertel 29: package Apache::lonlogin;
30:
31: use strict;
32: use Apache::Constants qw(:common);
33: use Apache::File ();
1.63 albertel 34: use Apache::lonnet;
1.12 albertel 35: use Apache::loncommon();
1.49 www 36: use Apache::lonauth();
1.50 www 37: use Apache::lonlocal;
1.71 albertel 38: use Apache::migrateuser();
1.75 www 39: use lib '/home/httpd/lib/perl/';
40: use LONCAPA;
41:
1.1 albertel 42: sub handler {
43: my $r = shift;
1.71 albertel 44:
45: &Apache::loncommon::get_unprocessed_cgi
1.79 albertel 46: (join('&',$ENV{'QUERY_STRING'},$env{'request.querystring'},
47: $ENV{'REDIRECT_QUERY_STRING'}),
1.71 albertel 48: ['interface','username','domain','firsturl','localpath','localres',
1.123 raeburn 49: 'token','role','symb']);
1.102 raeburn 50: if (!defined($env{'form.firsturl'})) {
51: &Apache::lonacc::get_posted_cgi($r,['firsturl']);
52: }
1.71 albertel 53:
54: # -- check if they are a migrating user
55: if (defined($env{'form.token'})) {
56: return &Apache::migrateuser::handler($r);
57: }
58:
1.53 www 59: &Apache::loncommon::no_cache($r);
60: &Apache::lonlocal::get_language_handle($r);
1.54 www 61: &Apache::loncommon::content_type($r,'text/html');
1.1 albertel 62: $r->send_http_header;
63: return OK if $r->header_only;
64:
1.49 www 65:
66: # Are we re-routing?
67: if (-e '/home/httpd/html/lon-status/reroute.txt') {
68: &Apache::lonauth::reroute($r);
69: return OK;
70: }
1.55 www 71:
1.71 albertel 72:
1.55 www 73: # -------------------------------- Prevent users from attempting to login twice
1.95 albertel 74: my $handle = &Apache::lonnet::check_for_valid_session($r);
75: if ($handle=~/^publicuser\_/) {
1.70 www 76: # For "public user" - remove it, we apparently really want to login
1.95 albertel 77: unlink($r->dir_config('lonIDsDir')."/$handle.id");
78: } elsif ($handle ne '') {
1.55 www 79: # Indeed, a valid token is found
1.95 albertel 80: my $start_page =
81: &Apache::loncommon::start_page('Already logged in');
82: my $end_page =
83: &Apache::loncommon::end_page();
1.125 ! raeburn 84: my $dest = '/adm/roles';
! 85: if ($env{'form.firsturl'} ne '') {
! 86: $dest = $env{'form.firsturl'};
! 87: }
1.100 bisitz 88: $r->print(
89: $start_page
1.103 bisitz 90: .'<h1>'.&mt('You are already logged in!').'</h1>'
1.117 hauer 91: .'<p>'.&mt('Please either [_1]continue the current session[_2] or [_3]log out[_4].',
1.125 ! raeburn 92: '<a href="'.$dest.'">','</a>','<a href="/adm/logout">','</a>').'</p>'
1.100 bisitz 93: .'<p><a href="/adm/loginproblems.html">'.&mt('Login problems?').'</a></p>'
94: .$end_page
95: );
1.95 albertel 96: return OK;
1.55 www 97: }
98:
99: # ---------------------------------------------------- No valid token, continue
1.16 www 100:
1.70 www 101: # ---------------------------- Not possible to really login to domain "public"
102: if ($env{'form.domain'} eq 'public') {
103: $env{'form.domain'}='';
104: $env{'form.username'}='';
105: }
1.32 www 106: # ----------------------------------------------------------- Process Interface
1.63 albertel 107: $env{'form.interface'}=~s/\W//g;
1.16 www 108:
1.32 www 109: my $httpbrowser=$ENV{"HTTP_USER_AGENT"};
1.94 albertel 110:
111: my $iconpath=
112: &Apache::loncommon::lonhttpdurl($r->dir_config('lonIconsURL'));
113:
1.87 raeburn 114: my $domain = &Apache::lonnet::default_login_domain();
1.63 albertel 115: if (($env{'form.domain'}) &&
1.89 albertel 116: (&Apache::lonnet::domain($env{'form.domain'},'description'))) {
1.63 albertel 117: $domain=$env{'form.domain'};
1.46 www 118: }
1.1 albertel 119: my $role = $r->dir_config('lonRole');
120: my $loadlim = $r->dir_config('lonLoadLim');
1.90 raeburn 121: my $servadm = $r->dir_config('lonAdmEMail');
1.1 albertel 122: my $lonhost = $r->dir_config('lonHostID');
123: my $tabdir = $r->dir_config('lonTabDir');
1.6 www 124: my $include = $r->dir_config('lonIncludes');
1.37 www 125: my $expire = $r->dir_config('lonExpire');
1.44 www 126: my $version = $r->dir_config('lonVersion');
1.88 albertel 127: my $host_name = &Apache::lonnet::hostname($lonhost);
1.1 albertel 128:
1.30 www 129: # --------------------------------------------- Default values for login fields
130:
1.63 albertel 131: my $authusername=($env{'form.username'}?$env{'form.username'}:'');
132: my $authdomain=($env{'form.domain'}?$env{'form.domain'}:$domain);
1.30 www 133:
134: # ---------------------------------------------------------- Determine own load
1.1 albertel 135: my $loadavg;
1.41 albertel 136: {
137: my $loadfile=Apache::File->new('/proc/loadavg');
138: $loadavg=<$loadfile>;
139: }
1.1 albertel 140: $loadavg =~ s/\s.*//g;
1.57 matthew 141: my $loadpercent=sprintf("%.1f",100*$loadavg/$loadlim);
1.41 albertel 142: my $userloadpercent=&Apache::lonnet::userload();
1.1 albertel 143:
1.30 www 144: # ------------------------------------------------------- Do the load balancing
1.80 albertel 145: my $otherserver= &Apache::lonnet::absolute_url($host_name);
1.31 www 146: my $firsturl=
1.63 albertel 147: ($env{'request.firsturl'}?$env{'request.firsturl'}:$env{'form.firsturl'});
1.97 albertel 148: # ---------------------------------------------------------- Are we overloaded?
149: if ((($userloadpercent>100.0)||($loadpercent>100.0))) {
1.47 albertel 150: my $unloaded=Apache::lonnet::spareserver($loadpercent,$userloadpercent);
151: if ($unloaded) { $otherserver=$unloaded; }
1.1 albertel 152: }
1.6 www 153:
1.45 www 154: # ----------------------------------------------------------- Get announcements
155: my $announcements=&Apache::lonnet::getannounce();
1.6 www 156: # -------------------------------------------------------- Set login parameters
157:
158: my @hexstr=('0','1','2','3','4','5','6','7',
159: '8','9','a','b','c','d','e','f');
160: my $lkey='';
161: for (0..7) {
162: $lkey.=$hexstr[rand(15)];
163: }
164:
165: my $ukey='';
166: for (0..7) {
167: $ukey.=$hexstr[rand(15)];
168: }
169:
170: my $lextkey=hex($lkey);
1.15 www 171: if ($lextkey>2147483647) { $lextkey-=4294967296; }
172:
1.6 www 173: my $uextkey=hex($ukey);
1.15 www 174: if ($uextkey>2147483647) { $uextkey-=4294967296; }
175:
1.31 www 176: # -------------------------------------------------------- Store away log token
1.123 raeburn 177: my $tokenextras;
178: if ($env{'form.role'}) {
179: $tokenextras = '&role='.&escape($env{'form.role'});
180: }
181: if ($env{'form.symb'}) {
1.124 raeburn 182: if (!$tokenextras) {
183: $tokenextras = '&';
184: }
1.123 raeburn 185: $tokenextras .= '&symb='.&escape($env{'form.symb'});
186: }
1.6 www 187: my $logtoken=Apache::lonnet::reply(
1.123 raeburn 188: 'tmpput:'.$ukey.$lkey.'&'.$firsturl.$tokenextras,
1.6 www 189: $lonhost);
1.31 www 190:
191: # ------------------- If we cannot talk to ourselves, we are in serious trouble
192:
193: if ($logtoken eq 'con_lost') {
194: my $spares='';
1.64 albertel 195: my $last;
196: foreach my $hostid (sort
197: {
1.88 albertel 198: &Apache::lonnet::hostname($a) cmp
199: &Apache::lonnet::hostname($b);
1.64 albertel 200: }
201: keys(%Apache::lonnet::spareid)) {
1.58 matthew 202: next if ($hostid eq $lonhost);
1.88 albertel 203: my $hostname = &Apache::lonnet::hostname($hostid);
204: next if ($last eq $hostname);
1.58 matthew 205: $spares.='<br /><font size="+1"><a href="http://'.
1.88 albertel 206: $hostname.
1.58 matthew 207: '/adm/login?domain='.$authdomain.'">'.
1.88 albertel 208: $hostname.'</a>'.
1.106 bisitz 209: ' '.&mt('(preferred)').'</font>'.$/;
1.88 albertel 210: $last=$hostname;
1.58 matthew 211: }
1.107 tempelho 212: $spares.= '<br />';
213: my %all_hostnames = &Apache::lonnet::all_hostnames();
214: foreach my $hostid (sort
215: {
216: &Apache::lonnet::hostname($a) cmp
217: &Apache::lonnet::hostname($b);
218: }
219: keys(%all_hostnames)) {
220: next if ($hostid eq $lonhost || $Apache::lonnet::spareid{$hostid});
221: my $hostname = &Apache::lonnet::hostname($hostid);
222: next if ($last eq $hostname);
223: $spares.='<br /><a href="http://'.
224: $hostname.
225: '/adm/login?domain='.$authdomain.'">'.
226: $hostname.'</a>';
227: $last=$hostname;
228: }
229: $r->print(
230: '<html>'
231: .'<head><title>'
232: .&mt('The LearningOnline Network with CAPA')
233: .'</title></head>'
234: .'<body bgcolor="#FFFFFF">'
235: .'<h1>'.&mt('The LearningOnline Network with CAPA').'</h1>'
236: .'<img src="/adm/lonKaputt/lonlogo_broken.gif" align="right" />'
237: .'<h3>'.&mt('This LON-CAPA server is temporarily not available for login.').'</h3>'
238: .'<p>'.&mt('Please attempt to login to one of the following servers:').'</p>'
239: .$spares
240: .'</body>'
241: .'</html>'
242: );
243: return OK;
244: }
1.31 www 245:
246: # ----------------------------------------------- Apparently we are in business
1.107 tempelho 247: $servadm=~s/\,/\<br \/\>/g;
1.38 www 248:
1.21 www 249: # ----------------------------------------------------------- Front page design
1.119 tempelho 250: my $pgbg=&Apache::loncommon::designparm('login.pgbg',$domain);
251: my $font=&Apache::loncommon::designparm('login.font',$domain);
252: my $link=&Apache::loncommon::designparm('login.link',$domain);
253: my $vlink=&Apache::loncommon::designparm('login.vlink',$domain);
1.107 tempelho 254: my $alink=&Apache::loncommon::designparm('login.alink',$domain);
1.119 tempelho 255: my $mainbg=&Apache::loncommon::designparm('login.mainbg',$domain);
1.107 tempelho 256: my $logo=&Apache::loncommon::designparm('login.logo',$domain);
257: my $img=&Apache::loncommon::designparm('login.img',$domain);
258: my $domainlogo=&Apache::loncommon::domainlogo($domain);
259: my $login=&Apache::loncommon::designparm('login.login',$domain);
260: if ($login eq '') {
261: $login = $iconpath.'/'.&mt('userauthentication.gif');
262: }
1.109 raeburn 263: my $showbanner = 1;
264: my $showmainlogo = 1;
265: if (defined(&Apache::loncommon::designparm('login.showlogo_img',$domain))) {
266: $showbanner = &Apache::loncommon::designparm('login.showlogo_img',$domain);
267: }
268: if (defined(&Apache::loncommon::designparm('login.showlogo_logo',$domain))) {
269: $showmainlogo = &Apache::loncommon::designparm('login.showlogo_logo',$domain);
270: }
1.107 tempelho 271: my $showadminmail=&Apache::loncommon::designparm('login.adminmail',$domain);
272: my $showcoursecat =
273: &Apache::loncommon::designparm('login.coursecatalog',$domain);
274: my $loginheader =&Apache::loncommon::designparm('login.loginheader',$domain);
275: my $shownewuserlink =
276: &Apache::loncommon::designparm('login.newuser',$domain);
277: my $now=time;
278: my $js = (<<ENDSCRIPT);
279:
1.116 bisitz 280: <script type="text/javascript" language="JavaScript">
1.122 bisitz 281: // <![CDATA[
1.107 tempelho 282: function send()
283: {
284: this.document.server.elements.uname.value
285: =this.document.client.elements.uname.value;
286:
287: this.document.server.elements.udom.value
288: =this.document.client.elements.udom.value;
289:
290: uextkey=this.document.client.elements.uextkey.value;
291: lextkey=this.document.client.elements.lextkey.value;
292: initkeys();
293:
294: this.document.server.elements.upass0.value
295: =crypted(this.document.client.elements.upass$now.value.substr(0,15));
296: this.document.server.elements.upass1.value
297: =crypted(this.document.client.elements.upass$now.value.substr(15,15));
298: this.document.server.elements.upass2.value
299: =crypted(this.document.client.elements.upass$now.value.substr(30,15));
1.6 www 300:
1.107 tempelho 301: this.document.client.elements.uname.value='';
302: this.document.client.elements.upass$now.value='';
1.6 www 303:
1.107 tempelho 304: this.document.server.submit();
305: return false;
306: }
1.122 bisitz 307: // ]]>
1.107 tempelho 308: </script>
1.98 raeburn 309:
1.16 www 310: ENDSCRIPT
1.6 www 311:
1.98 raeburn 312: # --------------------------------------------------- Print login screen header
313:
1.118 tempelho 314: my %add_entries = (
1.108 tempelho 315: bgcolor => "$mainbg",
1.107 tempelho 316: text => "$font",
317: link => "$link",
318: vlink => "$vlink",
319: alink => "$alink",);
320:
321: $r->print(&Apache::loncommon::start_page('The LearningOnline Network with CAPA Login',$js,
322: { 'redirect' => [$expire,'/adm/roles'],
323: 'add_entries' => \%add_entries,
324: 'only_body' => 1,}));
1.98 raeburn 325:
326: # ----------------------------------------------------------------------- Texts
327:
328: my %lt=&Apache::lonlocal::texthash(
1.107 tempelho 329: 'un' => 'Username',
330: 'pw' => 'Password',
331: 'dom' => 'Domain',
332: 'perc' => 'percent',
333: 'load' => 'Server Load',
334: 'userload' => 'User Load',
335: 'catalog' => 'Course Catalog',
336: 'log' => 'Log in',
337: 'help' => 'Log-in Help',
338: 'serv' => 'Server',
339: 'servadm' => 'Server Administration',
340: 'helpdesk' => 'Contact Helpdesk',
341: 'forgotpw' => 'Forgot password?',
342: 'newuser' => 'New User?',
1.111 muellerd 343: );
1.98 raeburn 344: # -------------------------------------------------- Change password field name
1.107 tempelho 345: my $forgotpw = &forgotpwdisplay(%lt);
346: my $loginhelp = &loginhelpdisplay(%lt);
1.98 raeburn 347:
348: # ---------------------------------------------------- Serve out DES JavaScript
1.107 tempelho 349: {
350: my $jsh=Apache::File->new($include."/londes.js");
351: $r->print(<$jsh>);
352: }
1.98 raeburn 353: # ---------------------------------------------------------- Serve rest of page
354:
1.107 tempelho 355: $r->print(
356: '<div class="LC_loginpage_container">');
1.6 www 357:
1.120 foxr 358: #
359: # If the loadbalancing yielded just http:// because perhaps there's no loadbalancing?
360: # then just us a relative link to authenticate:
361: #
362:
1.107 tempelho 363: $r->print(<<ENDSERVERFORM);
364: <form name="server" action="$otherserver/adm/authenticate" method="post" target="_top">
1.33 www 365: <input type="hidden" name="logtoken" value="$logtoken" />
366: <input type="hidden" name="serverid" value="$lonhost" />
367: <input type="hidden" name="uname" value="" />
1.65 www 368: <input type="hidden" name="upass0" value="" />
369: <input type="hidden" name="upass1" value="" />
370: <input type="hidden" name="upass2" value="" />
1.33 www 371: <input type="hidden" name="udom" value="" />
1.63 albertel 372: <input type="hidden" name="localpath" value="$env{'form.localpath'}" />
373: <input type="hidden" name="localres" value="$env{'form.localres'}" />
1.14 albertel 374: </form>
1.16 www 375: ENDSERVERFORM
1.108 tempelho 376: my $coursecatalog;
377: if (($showcoursecat eq '') || ($showcoursecat)) {
378: $coursecatalog = &coursecatalog_link($lt{'catalog'});
379: }
380: my $newuserlink;
381: if ($shownewuserlink) {
1.114 tempelho 382: $newuserlink = &newuser_link($lt{'newuser'}).'<br />';
1.108 tempelho 383: }
384: my $logintitle;
385: if ($loginheader eq 'text') {
1.113 tempelho 386: $logintitle ='<h2>'.$lt{'log'}.'</h2>';
1.108 tempelho 387: } else {
388: $logintitle = '<img src="'.$login.'" alt="'.
389: &mt('User Authentication').'" />';
390: }
391:
392: my $noscript_warning='<noscript><span class="LC_warning"><b>'
393: .&mt('Use of LON-CAPA requires Javascript to be enabled in your web browser.')
394: .'</b></span></noscript>';
395: my $helpdeskscript;
396: my $contactblock = &contactdisplay(\%lt,$servadm,$showadminmail,
397: $version,$authdomain,\$helpdeskscript);
1.107 tempelho 398:
1.108 tempelho 399: my $loginform=(<<LFORM);
1.122 bisitz 400: <form name="client" action="" onsubmit="return(send())">
1.115 bisitz 401: <input type="hidden" name="lextkey" value="$lextkey" />
402: <input type="hidden" name="uextkey" value="$uextkey" />
1.108 tempelho 403: <b><label for="uname">$lt{'un'}</label>:</b><br />
1.113 tempelho 404: <input type="text" name="uname" size="15" value="$authusername" /><br />
1.108 tempelho 405: <b><label for="upass$now">$lt{'pw'}</label>:</b><br />
1.113 tempelho 406: <input type="password" name="upass$now" size="15" /><br />
1.108 tempelho 407: <b><label for="udom">$lt{'dom'}</label>:</b><br />
1.113 tempelho 408: <input type="text" name="udom" size="15" value="$authdomain" /><br />
1.108 tempelho 409: <input type="submit" value="$lt{'log'}" />
410: </form>
411: LFORM
412:
1.109 raeburn 413: if ($showbanner) {
414: $r->print(<<HEADER);
415: <!-- The LON-CAPA Header -->
416: <table border="0" align="left" width="100%" cellspacing="0" cellpadding="1">
417: <tr>
418: <td align="left" valign="top" bgcolor="$pgbg">
1.115 bisitz 419: <img src="$img" border="0" alt="The Learning Online Network with CAPA" />
1.109 raeburn 420: </td>
421: </tr>
422: </table>
423: HEADER
424: }
425: $r->print(<<ENDTOP);
1.118 tempelho 426: <div class="LC_loginpage_space"> </div>
427: <div class="LC_loginpage_floatLeft">
1.108 tempelho 428: <div class="LC_loginpage_loginContainer">
1.112 muellerd 429: $logintitle
430: <table border="0" align="left" cellspacing="1" cellpadding="2" width="100%">
1.108 tempelho 431: <tr>
432: <td>
433: $loginform
434: </td>
435: </tr>
436: </table>
437: $noscript_warning
438: </div>
1.107 tempelho 439:
440: <div class="LC_loginpage_loginInfo">
441: $loginhelp<br />
1.114 tempelho 442: $forgotpw<br />
443: $contactblock<br />
444: $newuserlink
1.119 tempelho 445: $coursecatalog
1.107 tempelho 446: </div>
1.118 tempelho 447: </div>
448: ENDTOP
449: if ($showmainlogo) {
450: $r->print(' <img src="'.$logo.'" alt="" />'."\n");
451: }
452: $r->print(<<ENDTOP);
453: $announcements
454: $domainlogo
1.107 tempelho 455: <div class="LC_loginpage_space"> </div>
1.108 tempelho 456: ENDTOP
457:
458: $r->print(<<ENDDOCUMENT);
1.115 bisitz 459: <table border="0" cellspacing="0" cellpadding="0">
1.14 albertel 460: <tr>
1.110 muellerd 461: <td align="left" valign="top">
1.51 www 462: <small><b> $lt{'dom'}: </b></small>
1.14 albertel 463: </td>
1.110 muellerd 464: <td align="left" valign="top">
1.14 albertel 465: <small><tt> $domain</tt></small>
466: </td>
467: </tr>
468: <tr>
1.110 muellerd 469: <td align="left" valign="top">
1.51 www 470: <small><b> $lt{'serv'}: </b></small>
1.14 albertel 471: </td>
1.110 muellerd 472: <td align="left" valign="top">
1.14 albertel 473: <small><tt> $lonhost ($role)</tt></small>
474: </td>
475: </tr>
476: <tr>
1.110 muellerd 477: <td align="left" valign="top">
1.52 www 478: <small><b> $lt{'load'}: </b></small>
1.14 albertel 479: </td>
1.110 muellerd 480: <td align="left" valign="top">
1.51 www 481: <small><tt> $loadpercent $lt{'perc'}</tt></small>
1.42 albertel 482: </td>
483: </tr>
484: <tr>
1.110 muellerd 485: <td align="left" valign="top">
1.52 www 486: <small><b> $lt{'userload'}: </b></small>
1.42 albertel 487: </td>
1.110 muellerd 488: <td align="left" valign="top">
1.51 www 489: <small><tt> $userloadpercent $lt{'perc'}</tt></small>
1.14 albertel 490: </td>
491: </tr>
492: </table>
1.107 tempelho 493: </div>
1.25 bowersj2 494:
1.59 albertel 495: <script type="text/javascript">
1.122 bisitz 496: // <![CDATA[
1.59 albertel 497: // the if prevents the script error if the browser can not handle this
1.25 bowersj2 498: if ( document.client.uname ) { document.client.uname.focus(); }
1.122 bisitz 499: // ]]>
1.25 bowersj2 500: </script>
1.62 raeburn 501: $helpdeskscript
1.14 albertel 502:
1.1 albertel 503: ENDDOCUMENT
1.98 raeburn 504: my %endargs = ( 'noredirectlink' => 1, );
505: $r->print(&Apache::loncommon::end_page(\%endargs));
1.1 albertel 506: return OK;
1.60 raeburn 507: }
508:
509: sub contactdisplay {
1.90 raeburn 510: my ($lt,$servadm,$showadminmail,$version,$authdomain,$helpdeskscript) = @_;
1.60 raeburn 511: my $contactblock;
1.62 raeburn 512: my $showhelpdesk = 0;
513: my $requestmail = $Apache::lonnet::perlvar{'lonSupportEMail'};
514: if ($requestmail =~ m/^[^\@]+\@[^\@]+$/) {
515: $showhelpdesk = 1;
516: }
1.90 raeburn 517: if ($servadm && $showadminmail) {
518: $contactblock .= '<b> '.$$lt{'servadm'}.':</b><br />'.
519: '<tt> '.$servadm.'</tt><br /> <br />';
520: }
1.60 raeburn 521: if ($showhelpdesk) {
1.114 tempelho 522: $contactblock .= '<a href="javascript:helpdesk()">'.$lt->{'helpdesk'}.'</a><br />';
1.75 www 523: my $thisurl = &escape('/adm/login');
1.62 raeburn 524: $$helpdeskscript = <<"ENDSCRIPT";
525: <script type="text/javascript">
1.122 bisitz 526: // <![CDATA[
1.62 raeburn 527: function helpdesk() {
528: var codedom = document.client.udom.value;
529: if (codedom == '') {
530: codedom = "$authdomain";
531: }
532: var querystr = "origurl=$thisurl&codedom="+codedom;
533: document.location.href = "/adm/helpdesk?"+querystr;
534: return;
535: }
1.122 bisitz 536: // ]]>
1.62 raeburn 537: </script>
538: ENDSCRIPT
1.60 raeburn 539: }
540: $contactblock .= <<"ENDBLOCK";
541: $version
542: ENDBLOCK
543: return $contactblock;
544: }
1.83 raeburn 545:
546: sub forgotpwdisplay {
1.84 raeburn 547: my (%lt) = @_;
1.83 raeburn 548: my $prompt_for_resetpw = 1;
549: if ($prompt_for_resetpw) {
1.107 tempelho 550: return '<a href="/adm/resetpw">'.$lt{'forgotpw'}.'</a>';
1.84 raeburn 551: }
552: return;
553: }
554:
555: sub loginhelpdisplay {
556: my (%lt) = @_;
557: my $login_help = 1;
558: if ($login_help) {
1.107 tempelho 559: return '<a href="/adm/loginproblems.html">'.$lt{'help'}.'</a>';
1.83 raeburn 560: }
561: return;
562: }
1.1 albertel 563:
1.90 raeburn 564: sub coursecatalog_link {
565: my ($linkname) = @_;
566: return <<"END";
1.107 tempelho 567: <a href="/adm/coursecatalog">$linkname</a>
1.90 raeburn 568: END
569: }
570:
1.101 raeburn 571: sub newuser_link {
572: my ($linkname) = @_;
573: return ' <a href="/adm/createaccount"><b>'.$linkname.'</b></a><br />';
574: }
575:
1.1 albertel 576: 1;
577: __END__
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>