RS_Jelle
03-16-2006, 06:16 AM
When you try to log out using the User CP on portal.php (home), you always get an error (it's a wrong (old) log out link):
An error occurred while attempting to log you out. Click here to log out.
And please change the code of the log in box on portal.php (home):
FIND
<input type="text" class="bginput" name="vb_login_username" value="Unregistered" size="15" />
REPLACE WITH
<input type="text" class="bginput" name="vb_login_username" value="Unregistered" size="15" onfocus="if (this.value == 'Unregistered') this.value = '';" />
When you click on the user name input field, the "Unregistered" standard text will disappear automatically, so you can type your user name immediately and you don't need to remove the "Unregistered" text first. Much easier and it's only a little change :)
An error occurred while attempting to log you out. Click here to log out.
And please change the code of the log in box on portal.php (home):
FIND
<input type="text" class="bginput" name="vb_login_username" value="Unregistered" size="15" />
REPLACE WITH
<input type="text" class="bginput" name="vb_login_username" value="Unregistered" size="15" onfocus="if (this.value == 'Unregistered') this.value = '';" />
When you click on the user name input field, the "Unregistered" standard text will disappear automatically, so you can type your user name immediately and you don't need to remove the "Unregistered" text first. Much easier and it's only a little change :)