Changes adopted from version 0.4

This commit is contained in:
2023-02-13 09:56:14 +01:00
parent 8d00ee5e1b
commit faf5f368f5
152 changed files with 4971 additions and 1379 deletions
+42 -16
View File
@@ -1,9 +1,27 @@
<form method="POST" action="submit.php">
<input type="hidden" name="edit" value="user">
<input type="hidden" name="user_id" value="{user_id}">
<table border="0" width="100%">
<tr>
<td>
<b>{lang_user_edit}:</b><br>
</td>
<td align="right">
<input type="image" src="images/save.gif" title="{lang_submit}">
</td>
</tr>
</table>
<p>
<table border="0">
<tr>
<td colspan="2">
<b>{lang_options_settings_edit}:</b><br>
<td>
{lang_user_name}:
</td>
<td>
<input type="text" name="user_name" value="{user_name}">
</td>
</tr>
<tr>
@@ -19,12 +37,7 @@
{lang_mac}:
</td>
<td>
<select name="user_mac">
<option value="0">xxxxxxxxxxxx</option>
<option value="1">xx-xx-xx-xx-xx-xx</option>
<option value="2">xx:xx:xx:xx:xx:xx</option>
<option value="3">xxxxxx-xxxxxx</option>
</select>
<input type="text" name="user_mac" value="{user_mac}">
</td>
</tr>
<tr>
@@ -32,15 +45,28 @@
{lang_language}:
</td>
<td>
<select name="user_lang">
<option value="en">English</option>
</select>
</td>
</tr>
<tr>
<td colspan="2" align="right">
<input type="submit" value="{lang_submit}"><input type="reset" value="{lang_reset}">
<input type="text" name="user_lang" value="{user_lang}" size="2">
</td>
</tr>
</table>
<p>
<table border="0">
[BLOCK table AS userclass]
<tr>
<td>
<b>{lang_userclasses}</b>:
</td>
</tr>
[BLOCK userclassrow]
<tr>
<td>
<input type="checkbox" name="userclass_id[]" value="{userclass_id}" {checked}>{userclass_name}
</td>
</tr>
[END userclassrow]
[END table]
</table>
</form>