From 8c305f59f2bbc2426847cabf1b3283a373c4ad10 Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Wed, 19 Nov 2014 06:56:36 +0100 Subject: [PATCH] LoginForm: re-establish placeholder texts --- application/forms/Authentication/LoginForm.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/forms/Authentication/LoginForm.php b/application/forms/Authentication/LoginForm.php index 41107be18..a6d69d15a 100644 --- a/application/forms/Authentication/LoginForm.php +++ b/application/forms/Authentication/LoginForm.php @@ -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' : '' ) );