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); + ?>