summaryrefslogtreecommitdiffstats
path: root/admin/templates/users.php
blob: 235df5bf829c681d29079d4d0358550799606da6 (plain)
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<h2>Users</h2>

<table id="usertable">
	<thead>
		<tr>
			<th>Name</th>
			<th>Groups</th>
			<th></th>
		</tr>
	</thead>
	<tfoot>
		<tr id="createuseroption">
			<td><button id="createuseroptionbutton">Add user</button></td>
			<td>&nbsp;</td>
			<td>&nbsp;</td>
		</tr>
		<form id="createuserdata">
			<tr id="createuserform" style="display:none;">
				<td>
					Name <input x-use="createuserfield" type="text" name="username" /><br>
					Password <input x-use="createuserfield" type="password" name="password" />
				</td>
				<td id="createusergroups">
					<?php foreach($_["groups"] as $i): ?>
						<input x-use="createusercheckbox" x-gid="<? echo $i["name"]; ?>" type="checkbox" name="groups[]" value="<? echo $i["name"]; ?>" />
						<span x-gid="<? echo $i["name"]; ?>"><? echo $i["name"]; ?><br></span>
					<?php endforeach; ?>
				</td>
				<td>
					<button id="createuserbutton">Create user</button>
				</td>
			</tr>
		</form>
	</tfoot>
	<tbody>
		<?php foreach($_["users"] as $user): ?>
			<tr x-uid="<?php echo $user["name"] ?>">
				<td x-use="username"><div x-use="usernamediv"><?php echo $user["name"]; ?></div></td>
				<td x-use="usergroups"><div x-use="usergroupsdiv"><?php if( $user["groups"] ){ echo $user["groups"]; }else{echo "&nbsp";} ?></div></td>
				<td><a  class="removeuserbutton" href="">remove</a></td>
			</tr>
		<?php endforeach; ?>
	</tbody>
</table>

<h2>Groups</h2>
<table id="grouptable">
	<thead>
		<tr>
			<th>Name</th>
			<th></th>
		</tr>
	</thead>
	<tfoot>
		<form id="creategroupdata">
			<tr>
				<td><input x-use="creategroupfield" type="text" name="groupname" /></td>
				<td><button id="creategroupbutton">Create group</button></td>
			</tr>
		</form>
	</tfoot>
	<tbody>
		<?php foreach($_["groups"] as $group): ?>
			<tr x-gid="<?php echo $group["name"]; ?>">
				<td><?php echo $group["name"] ?></td>
				<td>
					<?php if( $group["name"] != "admin" ): ?>
						<a class="removegroupbutton" href="">remove</a>
					<?php else: ?>
						&nbsp;
					<?php endif; ?>
				</td>
			</tr>
		<?php endforeach; ?>
	</tbody>
</table>



<div id="changegroups" style="display:none">
	<form id="changegroupsform">
		<input id="changegroupuid" type="hidden" name="username" value="" />
		<input id="changegroupgid" type="hidden" name="group" value="" />
		<?php foreach($_["groups"] as $i): ?>
			<input x-use="togglegroup" x-gid="<? echo $i["name"]; ?>" type="checkbox" name="groups[]" value="<? echo $i["name"]; ?>" />
			<span x-use="togglegroup" x-gid="<? echo $i["name"]; ?>"><? echo $i["name"]; ?><br></span>
		<?php endforeach; ?>
	</form>
</div>

<div id="changepassword" style="display:none">
	<form id="changepasswordform">
		<input id="changepassworduid" type="hidden" name="username" value="" />
		Force new password:
		<input id="changepasswordpwd" type="password" name="password" value="" />
		<button id="changepasswordbutton">Set</button>
	</form>
</div>

<div id="removeuserform" title="Remove user">
	<form id="removeuserdata">
		Do you really want to delete user <span id="deleteuserusername">$user</span>?
		<input id="deleteusernamefield" type="hidden" name="username" value="">
	</form>
</div>

<div id="removegroupform" title="Remove Group">
	<form id="removegroupdata">
		Do you really want to delete group <span id="removegroupgroupname">$group</span>?
		<input id="removegroupnamefield" type="hidden" name="groupname" value="">
	</form>
</div>

<div id="errordialog" title="Error">
	<span id="errormessage"></span>
</div>