-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathblock.html
More file actions
25 lines (25 loc) ยท 808 Bytes
/
Copy pathblock.html
File metadata and controls
25 lines (25 loc) ยท 808 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Snap Out - Why are you visiting?</title>
<link rel="stylesheet" href="block.css">
</head>
<body>
<div class="particles"></div>
<div class="container">
<div class="icon">โธ๏ธ</div>
<h1>Snap Out</h1>
<div class="blocked-url" id="blockedUrl"></div>
<h2>Why are you visiting this website now?</h2>
<div class="error-message" id="errorMessage"></div>
<textarea id="reasonInput" placeholder="Type your reason here..." autofocus></textarea>
<div class="char-count" id="charCount">0 characters</div>
<div class="button-group">
<button id="continueBtn" class="primary">Continue to Website</button>
<button id="goBackBtn" class="secondary">Go Back</button>
</div>
</div>
<script src="block.js"></script>
</body>
</html>