MyBB Community Forums

Full Version: change the title of admin cp login form
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello
how can I change the title of the login form of admin cp ?

attached a shot :
[attachment=31580]
Open: admin/inc/class_page.php find and chanage:

<h2>{$lang->please_login}</h2>
Thanks marcus123
Awesome see ya around Smile
Or, if you wanted to change it for all languages (replace "english" with the language you wish to change):
Open inc/languages/english/admin/global.lang.php and find:
$l['please_login'] = "Login Please";
Replace with:
$l['please_login'] = "Title Here";

The message I used is "Authorized Access Only" and I imagine you're probably wanting to do something similar.