LoginForm: re-establish placeholder texts

This commit is contained in:
Thomas Gelf 2014-11-19 06:56:36 +01:00
parent 4d4d19a7ef
commit 8c305f59f2
1 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ class LoginForm extends Form
array(
'required' => true,
'label' => t('Username'),
'placeholder' => t(''),
'placeholder' => t('Please enter your username...'),
'class' => false === isset($formData['username']) ? 'autofocus' : ''
)
);
@ -42,7 +42,7 @@ class LoginForm extends Form
array(
'required' => true,
'label' => t('Password'),
'placeholder' => t(''),
'placeholder' => t('...and your password'),
'class' => isset($formData['username']) ? 'autofocus' : ''
)
);