-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPremium Code Lock
More file actions
44 lines (39 loc) · 984 Bytes
/
Premium Code Lock
File metadata and controls
44 lines (39 loc) · 984 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Premium Code Verification</title>
<style>
body {
background-color: #000000;
color: #fff;
font-family: "Arial Rounded", Arial, sans-serif;
}
input[type="password"], button {
background-color: #333;
color: #fff;
border: none;
padding: 5px 10px;
border-radius: 4px;
}
button:hover {
background-color: #555;
}
</style>
</head>
<body>
<h1>Premium Code Verification</h1>
<label for="password">Enter Code:</label>
<input type="password" id="password">
<button onclick="checkPassword()">Enter</button>
<script>
function checkPassword() {
var enteredPassword = document.getElementById("password").value;
if (enteredPassword === "G4M3C47RUL35") {
window.open("https://www.google.com/?safe=active&ssui=on", "_blank");
} else {
alert("Wrong password, Try again!");
}
}
</script>
</body>
</html>