-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbasic.ctp
More file actions
30 lines (25 loc) · 992 Bytes
/
basic.ctp
File metadata and controls
30 lines (25 loc) · 992 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php
/**
* RolesRoomsUser edit template
*
* @author Noriko Arai <arai@nii.ac.jp>
* @author Shohei Nakajima <nakajimashouhei@gmail.com>
* @link http://www.netcommons.org NetCommons Project
* @license http://www.netcommons.org/license.txt NetCommons License
* @copyright Copyright 2014, NetCommons Project
*/
?>
<?php echo $this->Wizard->navibar(UserAddController::WIZARD_USERS); ?>
<?php
echo $this->MessageFlash->description(
__d('user_manager', 'Input the user data, and press [NEXT].<br>Required items are marked by <strong class="text-danger h4">*</strong>.')
);
?>
<div class="panel panel-default">
<?php echo $this->NetCommonsForm->create('User', array('type' => 'file')); ?>
<?php echo $this->element('Users.Users/edit_form', array('element' => 'UserManager.UserManager/render_edit_row')); ?>
<div class="panel-footer text-center">
<?php echo $this->Wizard->buttons(UserAddController::WIZARD_USERS); ?>
</div>
<?php echo $this->NetCommonsForm->end(); ?>
</div>