dreamjob/lib/Cake/Test/test_app/View/Posts/cache_form.ctp

14 lines
357 B
PHP

<div class="users form">
<!--nocache-->
<?php echo $this->Form->create('User'); ?>
<fieldset>
<legend><?php echo __('Add User'); ?></legend>
<?php
echo $this->Form->input('username');
echo $this->Form->input('email');
echo $this->Form->input('password');
?>
</fieldset>
<?php echo $this->Form->end('Submit'); ?>
<!--/nocache-->
</div>