aboutsummaryrefslogtreecommitdiffstats
path: root/root/admin/account_promote.tt
diff options
context:
space:
mode:
Diffstat (limited to 'root/admin/account_promote.tt')
-rw-r--r--root/admin/account_promote.tt68
1 files changed, 36 insertions, 32 deletions
diff --git a/root/admin/account_promote.tt b/root/admin/account_promote.tt
index fd6400e..39dba87 100644
--- a/root/admin/account_promote.tt
+++ b/root/admin/account_promote.tt
@@ -1,34 +1,38 @@
-<form method=post>
-<table border=0>
-<tr>
-<th>Select</th>
-<th>Username</th>
-<th>Email</th>
-<th>First Name</th>
-<th>Surname</td>
-<th>Full Name</td>
-</tr>
-[% FOREACH entry IN entries %]
-<tr>
-<td><input type='checkbox' name='username' value="[% entry.uid %]">
-<td>[% entry.uid %]</td>
-<td>[% entry.mail %]</td>
-<td>[% entry.givenName %]</td>
-<td>[% entry.sn %]</td>
-<td>[% entry.cn %]</td>
-</tr>
-[% END %]
-</table>
+<form method="post" action="">
+ <table border=0>
+ <tr>
+ <th>Select</th>
+ <th>Username</th>
+ <th>Email</th>
+ <th>First Name</th>
+ <th>Surname</td>
+ <th>Full Name</td>
+ </tr>
+ [% FOREACH entry IN entries %]
+ <tr>
+ <td><input type='checkbox' name='username' value="[% entry.uid %]">
+ <td>[% entry.uid %]</td>
+ <td>[% entry.mail %]</td>
+ <td>[% entry.givenName %]</td>
+ <td>[% entry.sn %]</td>
+ <td>[% entry.cn %]</td>
+ </tr>
+ [% END %]
+ </table>
-<table border=0>
-<tr>
-<td>Primary group</td>
-<td><select name='gid'>
-[% FOREACH group IN groups %]
-<option value=[% group.gidNumber %]>[% group.cn %]</option>
-[% END %]
-</td>
-<td>
-<input type='submit' value='Promote'>
-</table>
+ <table border=0>
+ <tr>
+ <td>Primary group</td>
+ <td>
+ <select name="gid">
+ [% FOREACH group IN groups %]
+ <option value=[% group.gidNumber %]>[% group.cn %]</option>
+ [% END %]
+ </select>
+ </td>
+ <td>
+ <input type="submit" value="Promote" />
+ </td>
+ </tr>
+ </table>
</form>