-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (72 loc) · 3.38 KB
/
index.html
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Intelligence Attendence System</title>
<link href ="css/style.css" type="text/css" rel="stylesheet">
<script src="js/javascript.js"></script>
</head>
<body>
<form id="loginform" name="login" method="post" action="php/index_process.php">
<table width="100%" height="620" border="0" cellpadding="0" cellspacing="0">
<tr>
<td colspan="3" height="150"> </td>
</tr>
<tr>
<td> </td>
<td width="324" height="204" align="center" valign="middle">
<table width="324" height="204" border="0" cellpadding="0" cellspacing="0">
<tr>
<td height="65" colspan="2" align="center" valign="middle"> </td>
</tr>
<tr>
<td width="140" height="25" align="right" valign="middle">
<span id="uname"><strong>Username:</strong>
</span>
</td>
<td width="175" align="left" valign="middle">
<input name="username" type="text" class="STYLE1" id="username" size="15" />
</td>
</tr>
<tr>
<td height="25" align="right" valign="middle">
<span id="lg"><strong>Password:</strong>
</span>
</td>
<td align="left" valign="middle">
<input name="pwd" type="password" id="pwd" size="15" />
</td>
</tr>
<tr>
<td height="25" align="right" valign="middle"><span id="utype"><strong>Account:</strong></span></td>
<td align="left" valign="middle">
<span style="font-weight: bold">
<input type="radio" name="u_group" value="0" checked="checked"/>Student
<input type="radio" name="u_group" value="1"/>Teacher
</span>
</td>
<span id="title"><strong>CS491 Attendanse System</strong></br>
<span id="title2"><strong>Please Login with your username and password</strong></br>
<span id="title3"><strong>Or.. You can Choose Face Login</strong></span></span></span>
</tr>
<tr>
<td height="64" colspan="2" align="center" valign="middle">
<strong>
<input type="hidden" name="action" value="login" />
<input type="submit" name="login" id="login" value="Login" onclick="return chk_lg();"/>
<input type="reset" value="Reset"/>
<input type="button" onclick="window.location.href='./index2.html';" value="Video Login" >
</strong>
</td>
</tr>
</table>
</td>
<td> </td>
</tr>
<tr>
<td colspan="3" height="155"> </td>
</tr>
</table>
</form>
</body>
</html>