2022-08-18 14:01:52 +02:00
|
|
|
<div id="login">
|
|
|
|
<form name="login" method="post">
|
|
|
|
<table id="login_table" cellspacing="10">
|
|
|
|
<tr>
|
2022-09-04 11:38:47 +02:00
|
|
|
<td colspan="2"><h4><?php echo $LANG['Login_welcome']; ?></h4></td>
|
2022-08-18 14:01:52 +02:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2022-09-04 11:38:47 +02:00
|
|
|
<td><?php echo $LANG['Login_username'] . ":"; ?></td>
|
2022-09-04 12:10:27 +02:00
|
|
|
<td><input class="flat" type="text" name="username" value="<?php echo $username ?? ''; ?>" /></td>
|
2022-08-18 14:01:52 +02:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2022-09-04 11:38:47 +02:00
|
|
|
<td><?php echo $LANG['Login_password'] . ":"; ?></td>
|
2022-09-04 12:10:27 +02:00
|
|
|
<td><input class="flat" type="password" name="password" /></td>
|
2022-08-18 14:01:52 +02:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2022-09-06 15:48:07 +02:00
|
|
|
<td colspan="2" class="help_center"><input class="button" type="submit" name="submit" value="<?php echo $LANG['Login_button']; ?>" /></td>
|
2022-08-18 14:01:52 +02:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2022-09-04 12:10:27 +02:00
|
|
|
<td colspan="2" class="standout"><?php echo $message ?? ' '; ?></td>
|
2022-08-18 14:01:52 +02:00
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</form>
|
|
|
|
</div>
|