add attributes to disable spell check and automatic capitalization to all username input fields
This commit is contained in:
@@ -35,6 +35,10 @@
|
|||||||
<v-text-field
|
<v-text-field
|
||||||
type="text"
|
type="text"
|
||||||
autocomplete="username"
|
autocomplete="username"
|
||||||
|
autocapitalize="none"
|
||||||
|
autocorrect="off"
|
||||||
|
spellcheck="false"
|
||||||
|
inputmode="email"
|
||||||
:autofocus="true"
|
:autofocus="true"
|
||||||
:disabled="show2faInput || loggingInByPassword || loggingInByOAuth2 || verifying"
|
:disabled="show2faInput || loggingInByPassword || loggingInByOAuth2 || verifying"
|
||||||
:label="tt('Username')"
|
:label="tt('Username')"
|
||||||
|
|||||||
@@ -36,6 +36,10 @@
|
|||||||
<v-text-field
|
<v-text-field
|
||||||
type="text"
|
type="text"
|
||||||
autocomplete="username"
|
autocomplete="username"
|
||||||
|
autocapitalize="none"
|
||||||
|
autocorrect="off"
|
||||||
|
spellcheck="false"
|
||||||
|
inputmode="email"
|
||||||
:disabled="submitting || navigateToHomePage"
|
:disabled="submitting || navigateToHomePage"
|
||||||
:label="tt('Username')"
|
:label="tt('Username')"
|
||||||
:placeholder="tt('Your username')"
|
:placeholder="tt('Your username')"
|
||||||
|
|||||||
@@ -12,6 +12,10 @@
|
|||||||
<f7-list-input
|
<f7-list-input
|
||||||
type="text"
|
type="text"
|
||||||
autocomplete="username"
|
autocomplete="username"
|
||||||
|
autocapitalize="none"
|
||||||
|
autocorrect="off"
|
||||||
|
spellcheck="false"
|
||||||
|
inputmode="email"
|
||||||
clear-button
|
clear-button
|
||||||
:label="tt('Username')"
|
:label="tt('Username')"
|
||||||
:placeholder="tt('Your username')"
|
:placeholder="tt('Your username')"
|
||||||
|
|||||||
Reference in New Issue
Block a user