mirror of
https://github.com/discourse/discourse.git
synced 2025-01-30 05:51:03 +08:00
FIX: Password managers picking name as opposed to username
This commit is contained in:
parent
08233fc86e
commit
4f697f234d
|
@ -23,7 +23,7 @@
|
|||
<tr class="input">
|
||||
<td class="label"><label for='new-account-email'>{{i18n user.email.title}}</label></td>
|
||||
<td>
|
||||
{{input type="email" value=accountEmail id="new-account-email" disabled=emailValidated}}
|
||||
{{input type="email" value=accountEmail id="new-account-email" disabled=emailValidated name="email"}}
|
||||
{{input-tip validation=emailValidation}}
|
||||
</td>
|
||||
</tr>
|
||||
|
@ -35,7 +35,7 @@
|
|||
<tr class="input">
|
||||
<td class="label"><label for='new-account-username'>{{i18n user.username.title}}</label></td>
|
||||
<td>
|
||||
{{input value=accountUsername id="new-account-username" maxlength=maxUsernameLength}}
|
||||
{{input value=accountUsername id="new-account-username" name="username" maxlength=maxUsernameLength}}
|
||||
{{input-tip validation=usernameValidation id="username-validation"}}
|
||||
</td>
|
||||
</tr>
|
||||
|
|
Loading…
Reference in New Issue
Block a user