-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathamiop.html
89 lines (73 loc) · 3.16 KB
/
amiop.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!doctype html>
<html lang="en" data-bs-theme="dark">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Caleb Z's Website</title>
<!-- Bootstrap CSS -->
<link href="resource/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link href="resource/cursor.css" rel="stylesheet">
<link href="resource/searchdropdown.css" rel="stylesheet">
</head>
<body>
<div class="container mt-5">
<h1>AM I OP???</h1>
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="checkbox1">
<label class="form-check-label" for="checkbox1">
Caleb IS Better Than His Sister
</label>
</div>
<br>
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="checkbox2">
<label class="form-check-label" for="checkbox2">
Caleb Is gud coder
</label>
</div>
<br>
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="checkbox3">
<label class="form-check-label" for="checkbox3">
Because Caleb Created TPSers, Hes the rightful ruler
</label>
</div>
<br>
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="checkbox4">
<label class="form-check-label" for="checkbox4">
Caleb Can win 14 minecraft bedwars a day
</label>
</div>
<br>
<button type="button" class="btn btn-outline-info" id="proceedButton">Proceed</button>
</div>
<script>
// Get the checkboxes and the proceed button
const checkbox1 = document.getElementById('checkbox1');
const checkbox2 = document.getElementById('checkbox2');
const checkbox3 = document.getElementById('checkbox3');
const checkbox4 = document.getElementById('checkbox4');
const proceedButton = document.getElementById('proceedButton');
// Add an event listener to the button
proceedButton.addEventListener('click', function() {
// Check if all checkboxes are checked
if (checkbox1.checked && checkbox2.checked && checkbox3.checked && checkbox4.checked) {
// Redirect to the desired website
window.location.href = "https://www.example.com"; // Replace with the desired URL
} else {
alert("Please check all the boxes to proceed.");
}
});
</script>
<footer style="background-color: #333; color: white; text-align: center; padding: 20px; position: relative; width: 100%;">
<p>© 2024 Caleb Z. All rights not reserved.</p>
</footer>
<!-- JavaScript -->
<link href="resource/accordianwidth.css" rel="stylesheet">
<link href="resource/footer02.css" rel="stylesheet">
<script src="resource/searchdropdown.js"></script>
<!---bootstrap js-->
<script src="resource/bootstrap.bundle.js"></script>
</body>
</html>