Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
15403 manish.sha 1
<div class="posts form">
2
<?php echo $this->Form->create('Post' , array( 'type' => 'post' ));?>
3
	<fieldset>
4
 		<legend><?php __('Add Post');?></legend>
5
	<?php
6
		echo $this->Form->input('title');
7
		echo $this->Form->input('body');
8
		echo $this->Form->input('hoge');
9
	?>
10
	</fieldset>
11
<?php echo $this->Form->end('Submit');?>
12
</div>
13
<div class="actions">
14
	<ul>
15
		<li><?php echo $this->Html->link(__('List Posts', true), array('action'=>'index'));?></li>
16
	</ul>
17
</div>