11 lines
342 B
PHP
11 lines
342 B
PHP
<?php echo $this->Form->create('Monitor', array(
|
|
'inputDefaults' => array(
|
|
'legend' => false,
|
|
'fieldset' => false,
|
|
'label' => array('class' => array('control-label')),
|
|
'div' => array('class' => array('form-group')),
|
|
'class' => 'form-control'
|
|
)
|
|
)); ?>
|
|
<?php echo $this->Form->input('Id', array('type' => 'hidden')); ?>
|