pictcode / app / View / users / add.ctp @ 7769ee50
履歴 | 表示 | アノテート | ダウンロード (1.1 KB)
| 1 | d6c3d8de | root | <div class="users form"> |
|---|---|---|---|
| 2 | <?php echo $this->Form->create('User'); ?>
|
||
| 3 | <fieldset> |
||
| 4 | <legend><?php echo __('Add User'); ?></legend>
|
||
| 5 | <?php |
||
| 6 | echo $this->Form->input('login_id',array( 'type' => 'text'));
|
||
| 7 | echo $this->Form->input('password');
|
||
| 8 | echo $this->Form->input('user_flg');
|
||
| 9 | echo $this->Form->input('status', array(
|
||
| 10 | 'options' => array('0' => 'Active', '1' => 'expire')));
|
||
| 11 | ?> |
||
| 12 | </fieldset> |
||
| 13 | <?php echo $this->Form->end(__('Submit')); ?>
|
||
| 14 | </div> |
||
| 15 | <!-- <div class="actions"> |
||
| 16 | <h3><?php //echo __('Actions'); ?></h3>
|
||
| 17 | <ul> |
||
| 18 | |||
| 19 | <li><?php //echo $this->Html->link(__('List Users'), array('action' => 'index')); ?></li>
|
||
| 20 | <li><?php //echo $this->Html->link(__('List Logins'), array('controller' => 'logins', 'action' => 'index')); ?> </li>
|
||
| 21 | <li><?php //echo $this->Html->link(__('New Login'), array('controller' => 'logins', 'action' => 'add')); ?> </li>
|
||
| 22 | <li><?php //echo $this->Html->link(__('List Programs'), array('controller' => 'programs', 'action' => 'index')); ?> </li>
|
||
| 23 | <li><?php //echo $this->Html->link(__('New Program'), array('controller' => 'programs', 'action' => 'add')); ?> </li>
|
||
| 24 | </ul> |
||
| 25 | </div> |
||
| 26 | --> |