mirror of
https://github.com/e107inc/e107.git
synced 2025-03-14 01:19:44 +01:00
Fixes #843 - Login Menu styling issue and some missing LANs.
This commit is contained in:
parent
af465d2a5e
commit
c327a76fe8
@ -16,7 +16,7 @@
|
||||
|
||||
define("LOGIN_MENU_L1", "Username: ");
|
||||
define("LOGIN_MENU_L2", "Password: ");
|
||||
define("LOGIN_MENU_L3", "Signup");
|
||||
define("LOGIN_MENU_L3", "Sign up");
|
||||
define("LOGIN_MENU_L4", "Forgot password?");
|
||||
define("LOGIN_MENU_L5", "Welcome");
|
||||
define("LOGIN_MENU_L6", "Remember me");
|
||||
@ -74,5 +74,6 @@ define('LOGIN_MENU_L47', 'Login menu - Recent plugin additions');
|
||||
define('LOGIN_MENU_L48', 'Menu Config');
|
||||
define('LOGIN_MENU_L49', 'Email: ');
|
||||
define('LOGIN_MENU_L50', 'Username or Email: ');
|
||||
define("LOGIN_MENU_L51", "Sign In");
|
||||
|
||||
?>
|
@ -33,8 +33,8 @@ class theme_shortcodes extends e_shortcode
|
||||
if(deftrue('USER_REGISTRATION'))
|
||||
{
|
||||
$text .= '
|
||||
<li><a href="'.e_SIGNUP.'">Sign Up</a></li>
|
||||
';
|
||||
<li><a href="'.e_SIGNUP.'">'.LOGIN_MENU_L3.'</a></li>
|
||||
'; // Signup
|
||||
}
|
||||
|
||||
$text .= '
|
||||
@ -49,10 +49,11 @@ class theme_shortcodes extends e_shortcode
|
||||
{LM_IMAGECODE_BOX}
|
||||
|
||||
<div class="checkbox">
|
||||
<input style="float: left; margin-right: 10px;" type="checkbox" name="autologin" id="autologin" value="1">
|
||||
<label class="string optional" for="autologin"> Remember me</label>
|
||||
|
||||
<label class="string optional" for="autologin"><input style="margin-right: 10px;" type="checkbox" name="autologin" id="autologin" value="1">
|
||||
'.LOGIN_MENU_L6.'</label>
|
||||
</div>
|
||||
<input class="btn btn-primary btn-block" type="submit" name="userlogin" id="userlogin" value="Sign In">
|
||||
<input class="btn btn-primary btn-block" type="submit" name="userlogin" id="userlogin" value="'.LOGIN_MENU_L51.'">
|
||||
';
|
||||
|
||||
$text .= '
|
||||
|
Loading…
x
Reference in New Issue
Block a user