-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeddy_.htm
75 lines (71 loc) · 2.23 KB
/
deddy_.htm
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
<!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>
<head>
<title>.::Halaman Administrator::.</title>
<link rel="stylesheet" href="css/style_login.css" type="text/css"/>
</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="center">
<span class="title">
<img src="images/logo.png" alt="" width="285" height="80" class="picture" />
</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">Username</td>
<td> :
<input type="text" name="username" class="text" /></td>
</tr>
<tr>
<td height="26">Password</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>
</table>
</div>
</td>
</tr>
</table>
</div>
</div>
</form>
</div>
</div>
</div>
</body>
</html>