831 |
florian |
1 |
<div class="PhorumLargeFont">{LANG->UnapprovedUsers}</div>
|
|
|
2 |
<form action="{ACTION}" method="post">
|
|
|
3 |
{POST_VARS}
|
|
|
4 |
<input type="hidden" name="panel" value="users" />
|
|
|
5 |
<input type="hidden" name="forum_id" value="{FORUM_ID}" />
|
|
|
6 |
<table border="0" cellspacing="0" class="PhorumStdTable">
|
|
|
7 |
<tr>
|
|
|
8 |
<th class="PhorumTableHeader" align="left"> </th>
|
|
|
9 |
<th class="PhorumTableHeader" align="left">{LANG->Username}</th>
|
|
|
10 |
<th class="PhorumTableHeader" align="left" nowrap="nowrap" width="150">{LANG->Email}</th>
|
|
|
11 |
</tr>
|
|
|
12 |
{LOOP USERS}
|
|
|
13 |
<tr>
|
|
|
14 |
<td class="PhorumTableRow"><input type="checkbox" name="user_ids[]" value="{USERS->user_id}" /></td>
|
|
|
15 |
<td class="PhorumTableRow" width="50%">{USERS->username}</td>
|
|
|
16 |
<td class="PhorumTableRow" width="50%" nowrap="nowrap" width="150">{USERS->email}</td>
|
|
|
17 |
</tr>
|
|
|
18 |
{/LOOP USERS}
|
|
|
19 |
</table>
|
|
|
20 |
<div class="PhorumNavBlock" style="text-align: left;">
|
|
|
21 |
<input type="submit" class="PhorumSubmit" name="approve" value="{LANG->ApproveUser}" /> <input type="submit" class="PhorumSubmit" name="disapprove" value="{LANG->DenyUser}" />
|
|
|
22 |
</div>
|
|
|
23 |
</form>
|