PLT-486: Remove spell check feature from input boxes during signup flow

Add spellcheck="false" attribute to login and signup form inputs
Этот коммит содержится в:
Florian Orben
2015-10-11 22:28:45 +02:00
родитель 191e248b0f
Коммит 69a7363990
14 изменённых файлов: 19 добавлений и 0 удалений

Просмотреть файл

@@ -169,6 +169,7 @@ export default class SignupUserComplete extends React.Component {
placeholder=''
maxLength='128'
autoFocus={true}
spellCheck='false'
/>
{emailError}
</div>
@@ -204,6 +205,7 @@ export default class SignupUserComplete extends React.Component {
className='form-control'
placeholder=''
maxLength='128'
spellCheck='false'
/>
{nameError}
<p className='form__hint'>Username must begin with a letter, and contain between 3 to 15 lowercase characters made up of numbers, letters, and the symbols '.', '-' and '_'</p>
@@ -218,6 +220,7 @@ export default class SignupUserComplete extends React.Component {
className='form-control'
placeholder=''
maxLength='128'
spellCheck='false'
/>
{passwordError}
</div>