root/trunk/app/views/forums/reply.ctp

Revision 253, 0.9 kB (checked in by aarkerio, 9 months ago)

Update karamelo to 1.2 cake version

Line 
1<div class="spaced">
2<?php
3    echo $html->formTag('/admin/forums/edit/', 'post');
4    echo $html->hidden('Forum/id');
5?>
6<fieldset>
7<legend>Edit Phorums Category</legend>
8
9<?php
10    echo $form->labelTag('Forum/title', 'Title:') . "<br />";
11    echo $html->input('Forum/title', array('size'=>60, 'maxlength'=>90));
12    echo $html->tagErrorMsg('Forum/title','Please enter a title.');
13?>
14<br />
15<br />
16<?php
17   echo $form->labelTag('Forum/description', 'Description:') . "<br />";
18   echo $html->input('Forum/description', array("size" => 60, "maxlength" => 90));
19   echo $html->tagErrorMsg('Forum/description','Please enter a description.');
20?>
21
22<br /><br />
23<?php echo $form->labelTag('Forum/status', 'Status:') . "<br />"; ?>
24<?php echo $html->checkbox('Forum/status'); ?>
25<br /><br />
26<p style="clear:both"></p>
27<?php echo $html->submit('Update') ?>
28</fieldset>
29</form>
30</div>
Note: See TracBrowser for help on using the browser.