version 1.95, 2008/10/01 11:11:08
|
version 1.98, 2009/05/27 16:54:52
|
Line 84 sub success {
|
Line 84 sub success {
|
my $end_page =&Apache::loncommon::end_page(); |
my $end_page =&Apache::loncommon::end_page(); |
|
|
my $continuelink; |
my $continuelink; |
if (($env{'browser.interface'} eq 'textual') || |
if ($env{'environment.remote'} eq 'off') { |
($env{'environment.remote'} eq 'off')) { |
|
$continuelink="<a href=\"$lowerurl\">".&mt('Continue')."</a>"; |
$continuelink="<a href=\"$lowerurl\">".&mt('Continue')."</a>"; |
} |
} |
# ------------------------------------------------- Output for successful login |
# ------------------------------------------------- Output for successful login |
Line 122 sub failed {
|
Line 121 sub failed {
|
{'no_inline_link' => 1,}); |
{'no_inline_link' => 1,}); |
my $end_page = &Apache::loncommon::end_page(); |
my $end_page = &Apache::loncommon::end_page(); |
&Apache::loncommon::content_type($r,'text/html'); |
&Apache::loncommon::content_type($r,'text/html'); |
sleep 1; # brute force counteraction: slow down attackers, which try to hack user authentication with automated scripts |
|
$r->send_http_header; |
$r->send_http_header; |
$r->print( |
$r->print( |
$start_page |
$start_page |
Line 173 sub handler {
|
Line 171 sub handler {
|
$r->print( |
$r->print( |
$start_page |
$start_page |
.'<h1>'.&mt('You are already logged in!').'</h1>' |
.'<h1>'.&mt('You are already logged in!').'</h1>' |
.'<p>'.&mt('Please either [_1]continue the current session[_2] or [_3]logout[_4].' |
.'<p>'.&mt('Please either [_1]continue the current session[_2] or [_3]log out[_4].' |
,'<a href="/adm/roles">','</a>','<a href="/adm/logout">','</a>') |
,'<a href="/adm/roles">','</a>','<a href="/adm/logout">','</a>') |
.'</p>' |
.'</p>' |
.'<p><a href="/adm/loginproblems.html">'.&mt('Login problems?').'</a></p>' |
.'<p><a href="/adm/loginproblems.html">'.&mt('Login problems?').'</a></p>' |