forked from Project-4398/Wizard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuserManger.php
51 lines (43 loc) · 2.01 KB
/
userManger.php
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<html>
<head>
<link rel="stylesheet" type="text/css" href="assets/css/layout-default.css">
<link rel="stylesheet" type="text/css" href="assets/css/UserManager.css">
<link rel="stylesheet" type="text/css" href="assets/css/tree/style.css">
<link rel="stylesheet" type="text/css" href="assets/css/grid/redmond/jquery-ui-custom.css" />
<link rel="stylesheet" type="text/css" href="assets/css/grid/ui.jqgrid.css" />
<!--scripts included for this page-->
<script type="text/javascript" src="assets/js/jquery-1.11.1.js"></script>
<script type="text/javascript" src="assets/js/Wizard_Functions/userManagement/UserManager.js"></script>
<!--jQuery Layout-->
<script type="text/javascript" src="assets/js/Wizard_Functions/userManagement/jquery.layout.js"></script>
<script type="text/javascript" src="assets/js/Wizard_Functions/userManagement/jquery.layout.resizePaneAccordions.js"></script>
<script type="text/javascript" src="assets/js/Wizard_Functions/userManagement/debug.js"></script>
<!--jsTree-->
<script type="text/javascript" src="assets/js/Wizard_Functions/userManagement/jstree.js"></script>
<!--Grid view-->
<script type="text/javascript" src="assets/js/Wizard_Functions/userManagement/grid.locale-en.js" ></script>
<script type="text/javascript" src="assets/js/Wizard_Functions/userManagement/jquery.jqGrid.src.js" ></script>
</head>
<body>
<div class="ui-layout-north" style="display: none;">
<h3 class="ui-widget-header">Permission Manager</h3>
</div>
<div class="ui-layout-center" style="display: none;">
<h3 class="ui-widget-header">Permissions</h3>
<div class="ui-layout-content ui-widget-content">
This is the place for permissions
</div>
</div>
<div class="ui-layout-west" style="display: block; width: 200px;">
<h4 class="ui-widget-header">User Roles</h4>
<div id="userRole"></div>
</div>
<div class="ui-layout-east" style="display: none;">
<h3 class="ui-widget-header" >User List</h3>
<div class="ui-layout-content" id="userList" >
<table id="list"></table>
<div id="pager"></div>
</div>
</div>
</body>
</html>