我正在尝试使用 Yii Bootstrap 添加下拉登录表单,就像附加的教程一样,但我无法将 HTML 表单添加到TbNavbar
items
. 我该如何适应它?
跟随教程:http ://mifsud.me/adding-dropdown-login-form-bootstraps-navbar/
代码:
<?php $this->widget('bootstrap.widgets.TbNavbar',array(
'items'=>array(
array(
'class'=>'bootstrap.widgets.TbMenu',
'htmlOptions'=>array('class'=>'pull-right'),
'items'=>array(
array('label'=>'Login', 'url'=>'#', 'visible'=>Yii::app()->user->isGuest, 'items'=>array(
'FORM HTML CODE', // here is the problem, the HTML Form is not working.
)),
),
),
)); ?>