38 lines
1.2 KiB
PHP
38 lines
1.2 KiB
PHP
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
|
<meta name="viewport" content="width=320; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;"/>
|
|
<title>Login Form</title>
|
|
<link href="loginmodule.css" rel="stylesheet" type="text/css" />
|
|
</head>
|
|
<body>
|
|
<h1>LASUCA Controls Login</h1>
|
|
<p> </p>
|
|
<form id="loginForm" name="loginForm" method="post" action="login/function.php">
|
|
<table width="300" border="0" align="center" cellpadding="2" cellspacing="0">
|
|
<tr>
|
|
<td width="112"><b>Login</b></td>
|
|
<td width="188"><input name="login" type="text" class="textfield" id="login" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td><b>Password</b></td>
|
|
<td><input name="password" type="password" class="textfield" id="password" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td> </td>
|
|
<td><input type="submit" name="submit" value="Login" /></td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
<?php if (isset($_GET['error']))
|
|
{
|
|
if ($_GET['error'] == "pleaselogin")
|
|
{
|
|
echo "<p class='error'>Please Try Again</p>";
|
|
}
|
|
}
|
|
?>
|
|
</body>
|
|
</html>
|