-
Bug
-
Resolution: Fixed
-
Trivial
-
3.3.0
Before Patch :
After Patch:
Style prosilver,
/style/prosilver/template/ucp_reset_password.html
The issue is visible, if you're using a "dark" style if prosilver is Parent style.
Missing
class="inputbox narrow"
|
for input fields
new_password and new_password_confirm.
WRONG:
<dd><input type="password" name="new_password" id="new_password" size="25" maxlength="255" title="{{ lang('CHANGE_PASSWORD') }}" autocomplete="off" /></dd>
|
CORRECTED:
<dd><input class="inputbox narrow" type="password" name="new_password" id="new_password" size="25" maxlength="255" title="{{ lang('CHANGE_PASSWORD') }}" autocomplete="off" /></dd>
|
and
WRONG:
<dd><input type="password" name="new_password_confirm" id="new_password_confirm" size="25" maxlength="255" title="{{ lang('CONFIRM_PASSWORD') }}" autocomplete="off" /></dd>
|
CORRECTED:
<dd><input class="inputbox narrow" type="password" name="new_password_confirm" id="new_password_confirm" size="25" maxlength="255" title="{{ lang('CONFIRM_PASSWORD') }}" autocomplete="off" /></dd>
|