File: users_login.php

package info (click to toggle)
postfixadmin 2.3.5-2%2Bdeb7u1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 6,200 kB
  • sloc: php: 25,767; xml: 14,485; perl: 964; sh: 664; python: 169; makefile: 84
file content (29 lines) | stat: -rw-r--r-- 1,002 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php if( !defined('POSTFIXADMIN') ) die( "This file cannot be used standalone." ); ?>
<div id="login">
<form name="login" method="post">
<table id="login_table" cellspacing="10">
   <tr>
      <td colspan="2"><h4><?php print $PALANG['pUsersLogin_welcome']; ?></h4></td>
   </tr>
   <tr>
      <td><?php print $PALANG['pUsersLogin_username'] . ":"; ?></td>
      <td><input class="flat" type="text" name="fUsername" value="<?php print $tUsername; ?>" /></td>
   </tr>
   <tr>
      <td><?php print $PALANG['pUsersLogin_password'] . ":"; ?></td>
      <td><input class="flat" type="password" name="fPassword" /></td>
   </tr>
   <tr>
      <td colspan="2">
         <?php echo language_selector(); ?>
      </td>
   </tr>
   <tr>
      <td colspan="2" class="hlp_center"><input class="button" type="submit" name="submit" value="<?php print $PALANG['pUsersLogin_button']; ?>" /></td>
   </tr>
   <tr>
      <td colspan="2" class="standout"><?php print $tMessage; ?></td>
   </tr>
</table>
</form>
</div>