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