symfony2 - Symfony - FOSUser Bundle Styling Form Elements -
symfony2 - Symfony - FOSUser Bundle Styling Form Elements -
i trying add together classes style of form elements fosuser bundle uses... illustration ;
i want style {{ form_widget(form.plainpassword.first) }} in twig use.
how add together styling call?
first, sure understand how customize form elements
next, described in fosuserbundle documentation , need create bundle extends fosuserbundle
namespace acme\userbundle; utilize symfony\component\httpkernel\bundle\bundle; class acmeuserbundle extends bundle { public function getparent() { homecoming 'fosuserbundle'; } } fosuserbundle resources
edit:
to update form element class
{{ form_widget(form.plainpassword.first, { 'attr': {'class': 'myformclass'} }) }} hope helped
symfony2 fosuserbundle
Comments
Post a Comment