2009-12-13 12:39:39 -05:00
|
|
|
<div class="users form">
|
2010-11-06 01:18:23 -04:00
|
|
|
<!--nocache-->
|
2010-08-26 23:19:20 -04:00
|
|
|
<?php echo $this->Form->create('User');?>
|
2009-12-13 12:39:39 -05:00
|
|
|
<fieldset>
|
2010-04-16 02:43:43 +10:00
|
|
|
<legend><?php echo __('Add User');?></legend>
|
2009-12-13 12:39:39 -05:00
|
|
|
<?php
|
2010-08-26 23:19:20 -04:00
|
|
|
echo $this->Form->input('username');
|
|
|
|
echo $this->Form->input('email');
|
|
|
|
echo $this->Form->input('password');
|
2009-12-13 12:39:39 -05:00
|
|
|
?>
|
|
|
|
</fieldset>
|
2010-08-26 23:19:20 -04:00
|
|
|
<?php echo $this->Form->end('Submit');?>
|
2010-11-06 01:18:23 -04:00
|
|
|
<!--/nocache-->
|
2009-12-13 12:39:39 -05:00
|
|
|
</div>
|