aboutsummaryrefslogtreecommitdiffstats
path: root/includes/login.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/login.php')
-rw-r--r--includes/login.php13
1 files changed, 7 insertions, 6 deletions
diff --git a/includes/login.php b/includes/login.php
index 5df5d01..f29159b 100644
--- a/includes/login.php
+++ b/includes/login.php
@@ -1,7 +1,7 @@
<?php
// Hide the login block if logged in, there are no lock usernames,
// or if authenticated via HTTP.
- if ($username == '' && $allow_login == 'yes' && !isset($_SERVER['PHP_AUTH_USER'])) {
+ if ($username == '' && $allow_login == 'yes' && !isset($_SERVER['PHP_AUTH_USER'])) {
// Set the login table width if not set.
if (!isset($login_width)) $login_width = "100%";
@@ -17,26 +17,27 @@
echo '<input type="hidden" name="'.$key.'" value="'.$HTTP_GET_VARS[$key].'">';
}
- // For Wesley
- $login_message = ($user_passed == TRUE) ? $invalid_login_lang : $login_lang;
+ // If the attempted login was invalid, change the box title.
+ $login_message = ($invalid_login == TRUE) ? "<font color=\"red\">$invalid_login_lang</font>" : '';
echo <<<END
<table cellpadding="0" cellspacing="0" border="0" width="{$login_width}" class="calborder">
<tr>
- <td align="center" class="sideback"><div style="height: 17px; margin-top: 3px;" class="G10BOLD">{$login_message}</div></td>
+ <td align="center" class="sideback"><div style="height: 17px; margin-top: 3px;" class="G10BOLD">{$login_lang}</div></td>
</tr>
<tr>
<td align="left" class="G10B">
<div style="padding: 5px;">
+ {$login_message}
<table border="0" width="100%" cellspacing="0" cellpadding="2">
<tr>
<td width="5%">{$username_lang}:</td>
<td width="95%"><input class="login_style" type="text" size="8" name="username"></td>
</tr>
<tr>
- <td>Password:</td>
- <td><input class="login_style" type="{$password_lang}" size="8" name="password"></td>
+ <td>{$password_lang}:</td>
+ <td><input class="login_style" type="$password" size="8" name="password"></td>
</tr>
<tr>
<td>&nbsp;</td>

© 2014-2024 Faster IT GmbH | imprint | privacy policy