mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 19:38:26 +00:00
14 lines
No EOL
354 B
PHP
14 lines
No EOL
354 B
PHP
<div class="users form">
|
|
<cake: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');?>
|
|
</cake:nocache>
|
|
</div>
|