14 lines
349 B
PHP
Executable file
14 lines
349 B
PHP
Executable file
<div class="users form">
|
|
<?php echo $form->create('User');?>
|
|
<fieldset>
|
|
<legend><?php __('Edit User');?></legend>
|
|
<?php
|
|
echo $form->input('username');
|
|
echo $form->input('first_name');
|
|
echo $form->input('last_name');
|
|
echo $form->input('email');
|
|
echo $form->input('job_title');
|
|
?>
|
|
</fieldset>
|
|
<?php echo $form->end('Submit');?>
|
|
</div>
|