<?
/* filename: login.php
* project: movie database
* author: lex alexander, christian koerner
* originally coded: 17.05.2003
* last modified: 23.06.2003
* version V0.2
* usage: login
*/
include("../inc/conn_data.inc");
include("../language/$lang.inc");
include("../inc/functions.inc");
xhtmlTitle($login_title);
?>
<body>
<form action="login_check.php" method="post">
<table>
<tr>
<td><?=L_UNAME;?></td><td><input type="text" name="uname" /></td>
</tr>
<tr>
<td><?=L_PASS;?></td><td><input type="password" name="pass" /></td>
</tr>
<tr>
<td><input type= "submit" value="<?=SUBMIT;?>" /></td>
</tr>
</table>
<p><a href='../admin/index.php'><?=ADMIN_AREA;?></a></p>
</form>
</body>
</html>