PHP Classes

File: View/Users/admin_add.ctp

Recommend this page to a friend!
  Classes of Andraž   pingvincek   View/Users/admin_add.ctp   Download  
File: View/Users/admin_add.ctp
Role: Example script
Content type: text/plain
Description: Example script
Class: pingvincek
Manage a site for organizing dates between people
Author: By
Last change:
Date: 6 years ago
Size: 851 bytes
 

Contents

Class file image Download
<div class="grid_3">
    <div class="box menu">
        <?php echo $this->element('admin/admin_left_menu-custom'); ?>
</div>
</div>

<div class="grid_13">
<?php echo $this->Form->create('User');?>
<fieldset>
         <legend><?php echo __('Add User');?></legend>
    <?php
       
echo $this->Form->input('username');
        echo
$this->Form->input('password');
        echo
$this->Form->input('group_id');
                echo
$this->Form->input('hideprofile');
   
?>
</fieldset>
<?php echo $this->Form->end('Submit');?>
</div>
<div class="actions">
    <ul>
        <li><?php echo $this->Html->link(__('List Users'), array('action'=>'index'));?></li>
        <li><?php echo $this->Html->link(__('List Groups'), array('controller'=> 'groups', 'action'=>'index')); ?> </li>
        <li><?php echo $this->Html->link(__('New Group'), array('controller'=> 'groups', 'action'=>'add')); ?> </li>
    </ul>
</div>