disable username autocomplete on Sign Up modal

This commit is contained in:
Arpit Jalan 2016-05-29 00:49:40 +05:30
parent 665c5282c7
commit e922db82fb
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@
<tr class="input"> <tr class="input">
<td class="label"><label for='new-account-username'>{{i18n 'user.username.title'}}</label></td> <td class="label"><label for='new-account-username'>{{i18n 'user.username.title'}}</label></td>
<td> <td>
{{input value=accountUsername id="new-account-username" name="username" maxlength=maxUsernameLength}} {{input value=accountUsername id="new-account-username" name="username" maxlength=maxUsernameLength autocomplete="off"}}
&nbsp;{{input-tip validation=usernameValidation id="username-validation"}} &nbsp;{{input-tip validation=usernameValidation id="username-validation"}}
</td> </td>
</tr> </tr>