blob: c36d35e9d61fcaa72c55a11e2a880ff3224900f7 (
plain)
1
2
3
4
5
6
7
|
<h1>Add Post</h1>
<?php
echo $this->Form->create('Post');
echo $this->Form->input('title');
echo $this->Form->input('body', array('rows' => '3'));
echo $this->Form->end('Save Post');
?>
|