-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (29 loc) · 1.1 KB
/
index.html
File metadata and controls
32 lines (29 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Password Protected Image Gallery</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Password Entry Area -->
<div class="password-container" id="password-container">
<h1>Marsh Xatspace! Locked with Password.</h1>
<input type="password" id="password-input" placeholder="Enter your password...">
<button id="unlock-btn">Try</button>
<p id="error-message" class="error-message"></p>
</div>
<!-- Image Gallery (Hidden initially) -->
<div class="image-gallery" id="image-gallery" style="display: none;">
<h2>Secret Images</h2>
<div class="gallery-images">
<img src="https://xatimg.com/image/apzzAi0e6hXK.jpg" alt="Image 1">
<img src="https://xatimg.com/image/LvbJHceoXaqm.jpg" alt="Image 2">
<img src="https://xatimg.com/image/RxXPIBSkJCF4.jpg" alt="Image 3">
<img src="https://xatimg.com/image/6rOibxonzM48.jpg" alt="Image 4">
</div>
</div>
<script src="script.js"></script>
</body>
</html>