-
Notifications
You must be signed in to change notification settings - Fork 2
/
login.php
97 lines (81 loc) · 3.11 KB
/
login.php
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<script language="javascript">
function validasi(form){
if (form.username.value == ""){
alert("Anda belum mengisikan Username.");
form.username.focus();
return (false);
}
if (form.password.value == ""){
alert("Anda belum mengisikan Password.");
form.password.focus();
return (false);
}
return (true);
}
</script>
<meta http-equiv="content-type" content="text/html;charset=UTF-8">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="description" content=""/>
<meta name="keywords" content=""/>
<meta name="robots" content="ALL,FOLLOW"/>
<meta name="Author" content="AIT"/>
<meta http-equiv="imagetoolbar" content="no"/>
<title>.::Login Ujian Online::.</title>
<link rel="shortcut icon" type="image/x-icon" href="images/favicon2.png">
<link rel="stylesheet" href="css_login/reset.css" type="text/css"/>
<link rel="stylesheet" href="css_login/screen.css" type="text/css"/>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/cufon.js"></script>
<script type="text/javascript" src="js/Geometr231_Hv_BT_400.font.js"></script>
<script type="text/javascript" src="js/script.js"></script>
</head>
<body class="no-side">
<div class="login-box">
<div class="login-border">
<div class="login-style">
<div class="login-header">
<div class="logo clear">
<div align="right"><span class="title"></span></div>
</div>
</div>
<form name="login" action="cek_login.php" method="POST" onSubmit="return validasi(this)">
<div class="login-inside">
<div class="login-data">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><div align="center">
<table cellpadding="0" cellspacing="0">
<tr>
<td height="25"><b>Username</b></td>
<td> :
<input type="text" name="username" class="text" /></td>
</tr>
<tr>
<td height="26"><b>Password</b></td>
<td> :
<input type="password" class="text" name="password" /></td>
</tr>
<tr>
<td colspan="2"><div align="right">
<input name="submit" class="submit" type="submit" value="LOGIN" />
</div></td></tr>
<tr>
<td height="30"><a href="registrasi.php" class ="txt"><b>⇒Daftar Online test?</b></a><br>
</td>
</tr>
</table>
</div></td>
</tr>
</table>
</div>
</div>
</form>
</div>
</div>
</div>
</body>
<meta http-equiv="content-type" content="text/html;charset=UTF-8">
</html>