summaryrefslogtreecommitdiff
path: root/poc/poc02-compiling-cake/src/vendor/cakephp-2.2.1-0-gcc44130/lib/Cake/Test/test_app/View/Posts/cache_form.ctp
blob: 7f335e1f6d9372f6c7bed87cbcae459173e847a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<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>