Greets,
It's done something like this Pasq (using 6.3 as an example).
In newuser.php...
CHANGE THIS:
// ----------------------------------------------------------------------<br />// If we are allowing the user to create their own password, then we give<br />// them a form<br /> if ($config['userpass']) {<br /> $choosepassword = " <br /> {$ubbt_lang['OPT_PASS']}<br /><br /> <input type=\"password\" name=\"Loginpass\" class=\"formboxes\" /><br /> <br /><br /><br /> {$ubbt_lang['VER_PASS']}<br /><br /> <input type=\"password\" name = \"Verify\" class=\"formboxes\" /><br /> <br /><br /><br /> ";<br /> }
TO THIS:
// ----------------------------------------------------------------------<br />// If we are allowing the user to create their own password, then we give<br />// them a form<br /> if ($config['userpass']) {<br /> $choosepassword = " <br /> {$ubbt_lang['OPT_PASS']}<br /><br /> <input type=\"password\" name=\"Loginpass\" class=\"formboxes\" size=\"30\" maxlength=\"20\" /><br /> <br /><br /><br /> {$ubbt_lang['VER_PASS']}<br /><br /> <input type=\"password\" name = \"Verify\" class=\"formboxes\" size=\"30\" maxlength=\"20\" /><br /> <br /><br /><br /> ";<br /> }
The size= specifies the physical size of the box.
The optional maxlength= specifies how many characters can be added into it before it limits you from entering any more o_~