1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!DOCTYPE HTML>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>LenaSys</title>
</head>
<body>
<h1>LenaSys</h1>
<div>
<?php echo $error; ?>
</div>
<div>
<?php echo form_open('login/validate'); ?>
<label for="username">Username:</label>
<input type="text" size="20" id="username" name="username"/><br>
<label for="password">Password:</label>
<input type="password" size="20" id="password" name="password"/><br>
<input type="submit" value="Login"/>
</form>
</div>
</body>
</html>
|