opensmtpdadmin/templates/users_login.tpl

24 lines
759 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-03 11:30:40 +02:00
<td colspan="2"><h4><?php print $LANG['UsersLogin_welcome']; ?></h4></td>
2022-08-18 14:01:52 +02:00
</tr>
<tr>
2022-09-03 11:30:40 +02:00
<td><?php print $LANG['UsersLogin_username'] . ":"; ?></td>
2022-08-18 14:01:52 +02:00
<td><input class="flat" type="text" name="fUsername" value="<?php print $tUsername; ?>" /></td>
</tr>
<tr>
2022-09-03 11:30:40 +02:00
<td><?php print $LANG['UsersLogin_password'] . ":"; ?></td>
2022-08-18 14:01:52 +02:00
<td><input class="flat" type="password" name="fPassword" /></td>
</tr>
<tr>
2022-09-03 11:30:40 +02:00
<td colspan="2" class="hlp_center"><input class="button" type="submit" name="submit" value="<?php print $LANG['UsersLogin_button']; ?>" /></td>
2022-08-18 14:01:52 +02:00
</tr>
<tr>
<td colspan="2" class="standout"><?php print $tMessage; ?></td>
</tr>
</table>
</form>
</div>