-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpass2.html
More file actions
37 lines (36 loc) · 1.73 KB
/
pass2.html
File metadata and controls
37 lines (36 loc) · 1.73 KB
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
<html>
<head>
<title>password</title>
<link rel="stylesheet" href="pass.css">
</head>
<body>
<div class="form-design">
<div class="form">
<form class="comments" name="form1">
<input type="password" placeholder="Enter Password" name="name1" required>
<button id="btn">submit</button>
</form>
</div>
</div>
<script>
function validatedata()
{
var f1=document.form1.elements[0];
if(f1.value=="yasar")
{
document.getElementById("sm").textContent="Password is valid";
document.getElementById("sm").style.color="green";
document.getElementById("sm").style.fontFamily="times new roman";
}
else
{
document.getElementById("sm").textContent="Password is invalid";
document.getElementById("sm").style.color="red";
document.getElementById("sm").style.fontFamily="times new roman";
document.form1.name1.value="";
}
}
document.form1.btn.addEventListener("click",validatedata);
</script>
</body>
</html>