Session->flash();
echo $this->Form->create(null, array('url' => array('controller' => 'Home', 'action' => 'createGroupExpense')));
?>
| Title(*) | Form->input('title',array('title' => 'Please provide title','label'=>false,'length'=>'200px','required'=>'false'));?> |
| Your Name(*) | Form->input('YourName',array('YourName' => 'Please provide Your Name','label'=>false,'length'=>'200px','required'=>'false'));?> |
| Participants | Form->input('participants',array('title' => 'Please provide comma separator value','label'=>false,'length'=>'200px','required'=>'false'));?> |
| Currency(*) | Form->input('currency',array('label'=>false)) ;?> |
| Description | Form->textarea('description',array('rows' => '5', 'cols' => '45'));?> |
| Html->image(array('controller' => 'Home', 'action' => 'get_captcha'),array('id' => 'captcha_image')); echo $this->Html->link('Reload Captcha', 'javascript:void(0);',array('id' => 'reload')); ?> | |
| Captcha(*) | Form->input('captcha',array('label'=>false));?> |
| Form->end('Submit');?> | |