只是想知道如何使用formbuilder在html樹枝中創建表單時可以從標籤中分離文本框?表單工作正常,但我想要對齊每個新的文本框和前面的文本,這樣看起來就不那麼草率了。有沒有一種方法可以渲染表單,然後設計它?我使用php來創建FormBuilder的表單,並用樹枝渲染。造型我的形式在樹枝&php
php的創建形式是這樣的:
$form = $this->createFormBuilder(array('csrf_protection' => false))
->add('username','text', array('label'=>'Username/Alias'))
->add('password','password',array('label'=>'Password'))
->add('ve','text',array('label'=>'Verification code'))
->getForm() ;
$request= $this->getRequest();
而且樹枝看起來像這樣:
<form action="{{path('myBundle_login')}}" method="post" enctype={{form_enctype(form)}}>
// the form_enctype(form) is the form that is sent through
{{ form_errors(form) }}
{{ form_widget(form) }}
{{ form_rest(form) }}
,但我只是希望它整齊地隔開......請幫助。