Version 1 of DB auth. Only works with user/login.php for now.

This commit is contained in:
Elyrith
2013-08-09 22:34:58 -04:00
parent c8706fc865
commit ed0efd68a9
4 changed files with 64 additions and 1 deletions

16
includes/login_form.inc Normal file
View File

@@ -0,0 +1,16 @@
<form action="login.php" method="post">
<input type="hidden" name="do" value="authenticate">
<table border=0>
<tr>
<td><strong>Username</strong></td>
<td><input type="text" name="username" size="20" maxlength="20"></td>
</tr>
<tr>
<td><strong>Password</strong></td>
<td><input type="text" name="password" size="20" maxlength="20"></td>
</tr>
<tr>
<td colspan=2 align="center"><input type="submit" value="Login"></td>
</tr>
</table>