From 3ad3d84e37107ac7ea322cdaab0babc9f9d90cc9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guillermo=20G=2E=20Luque=20y=20Guzm=C3=A1n=20S=C3=A1enz?= Date: Wed, 25 Jun 2014 16:42:31 -0500 Subject: [PATCH] Update registration.phtml --- view/csn-user/registration/registration.phtml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/view/csn-user/registration/registration.phtml b/view/csn-user/registration/registration.phtml index 270615f..22f015b 100644 --- a/view/csn-user/registration/registration.phtml +++ b/view/csn-user/registration/registration.phtml @@ -31,6 +31,11 @@ $form->get('username')->setAttributes(array( 'placeholder' => $this->translate('Username') )); +$form->get('displayName')->setAttributes(array( + 'class' => 'form-control input-lg', + 'placeholder' => $this->translate('Display Name') +)); + $form->get('firstName')->setAttributes(array( 'required' => 'false', 'class' => 'form-control input-lg', @@ -96,6 +101,11 @@ $form->prepare(); echo $this->formElement($element); echo $this->formElementErrors($element); ?> + get('displayName'); + echo $this->formElement($element); + echo $this->formElementErrors($element); + ?>