-
Notifications
You must be signed in to change notification settings - Fork 0
/
id&pass.html
43 lines (33 loc) · 1.05 KB
/
id&pass.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<form action="">
<label for="uID">UserID</label>
<input type="text" id="uID" size="25" maxlength="10" value="">
<br><br>
<label for="pswd">Password</label>
<input type="password" id="pswd" size="25" maxlength="6" value="">
<br><br>
<button id="sbmt">Submit</button>
</form>
<script>
var sbmt_s = document.getElementById("sbmt");
sbmt_s.addEventListener("click", validate, false);
function validate() {
var uid = document.getElementById("uID").innerHTML;
var pswd = document.getElementById("pswd");
if (uid.value == "" || pswd.value == "") {
document.write("Please dont keep Field blank")
}
else {
document.write("Login Succesful")
}
}
</script>
</body>
</html>