Skip to content

Commit

Permalink
ASSIGNMENT DAY - 3
Browse files Browse the repository at this point in the history
  • Loading branch information
srinjoy-26 authored Jan 29, 2022
1 parent 6a04096 commit a853a88
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions assignment.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script>
var email = prompt('Enter your Email')
var pass = prompt('Enter your password')

if( email == 'st@letsupgrade.com' && pass == '12345'){
alert('You are loggedin')
}else{
alert('Enter correct Email and password!')
}
</script>
</body>
</html>

0 comments on commit a853a88

Please sign in to comment.