opensmtpdadmin/templates/users_login.tpl

24 lines
768 B
Smarty
Raw Normal View History

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['UsersLogin_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['UsersLogin_username'] . ":"; ?></td>
2022-09-04 19:17:50 +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['UsersLogin_password'] . ":"; ?></td>
2022-09-04 19:17:50 +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['UsersLogin_button']; ?>" /></td>
2022-08-18 14:01:52 +02:00
</tr>
<tr>
2022-09-04 19:17:50 +02:00
<td colspan="2" class="standout"><?php echo $message ?? '&nbsp;'; ?></td>
2022-08-18 14:01:52 +02:00
</tr>
</table>
</form>
</div>