You may want to update your mod to fix the following...the way you have it coded places two password boxes on the registration page...including the confirm password box...for a total of three password boxes.
Here's your code:
Code:
Select the register template and click on "Customize" or "Edit"
search for:
<input type="password" class="bginput" name="password" size="25" maxlength="50" value="$password" />
</td>
<td>
$vbphrase[confirm_password]:<br />
<input type="password" class="bginput" name="passwordconfirm" size="25" maxlength="50" value="$passwordconfirm" />
change to
<input type="password" class="keyboardInput" name="password" size="25" maxlength="50" value="$password" />
<input type="password" class="keyboardInput" name="password" size="25" maxlength="50" value="$password" />
</td>
<td>
$vbphrase[confirm_password]:<br />
<input type="password" class="keyboardInput" name="passwordconfirm" size="25" maxlength="50" value="$passwordconfirm" />
click "save"
Do you see the duplicate line of code marked in red above?
Here's what it should be:
Code:
Select the register template and click on "Customize" or "Edit"
search for:
<input type="password" class="bginput" name="password" size="25" maxlength="50" value="$password" />
</td>
<td>
$vbphrase[confirm_password]:<br />
<input type="password" class="bginput" name="passwordconfirm" size="25" maxlength="50" value="$passwordconfirm" />
change to
<input type="password" class="keyboardInput" name="password" size="25" maxlength="50" value="$password" />
</td>
<td>
$vbphrase[confirm_password]:<br />
<input type="password" class="keyboardInput" name="passwordconfirm" size="25" maxlength="50" value="$passwordconfirm" />
click "save"
I still have it installed...was just checking to see if everything worked properly and found the issue.