Skip to content

Commit a853a88

Browse files
authored
ASSIGNMENT DAY - 3
1 parent 6a04096 commit a853a88

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

assignment.html

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<title>Document</title>
8+
</head>
9+
<body>
10+
<script>
11+
var email = prompt('Enter your Email')
12+
var pass = prompt('Enter your password')
13+
14+
if( email == 'st@letsupgrade.com' && pass == '12345'){
15+
alert('You are loggedin')
16+
}else{
17+
alert('Enter correct Email and password!')
18+
}
19+
</script>
20+
</body>
21+
</html>

0 commit comments

Comments
 (0)