view cake/tests/test_app/views/posts/cache_form.ctp @ 4:c3adb28473d6 default tip

modified icon feature
author Shoshi TAMAKI <shoshi@cr.ie.u-ryukyu.ac.jp>
date Tue, 16 Aug 2011 18:31:36 +0900
parents 261e66bd5a0c
children
line wrap: on
line source

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