OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
eSamudaay
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
11/28/2024 11:03:35 AM
rwxrwxr-x
📄
about.html
3.05 KB
08/29/2024 12:13:31 PM
rw-r--r--
📄
activate.php
2.56 KB
08/29/2024 12:13:31 PM
rw-r--r--
📁
admin
-
08/29/2024 12:13:38 PM
rwxr-xr-x
📄
article.php
16.58 KB
08/29/2024 12:13:31 PM
rw-r--r--
📁
assets
-
08/29/2024 12:32:48 PM
rwxr-xr-x
📁
audio
-
08/29/2024 12:14:08 PM
rwxr-xr-x
📄
backend.php
11.94 KB
08/29/2024 12:13:32 PM
rw-r--r--
📄
bindex.html
11.81 KB
08/29/2024 12:13:32 PM
rw-r--r--
📄
colortest.php
24.1 KB
08/29/2024 12:13:32 PM
rw-r--r--
📄
contact.html
2.79 KB
08/29/2024 12:13:32 PM
rw-r--r--
📄
dashboard.php
12.84 KB
08/29/2024 12:13:32 PM
rw-r--r--
📁
eyecandy
-
08/29/2024 12:14:10 PM
rwxr-xr-x
📁
forms
-
08/29/2024 12:33:00 PM
rwxr-xr-x
📄
geo_location.php
3.55 KB
08/29/2024 12:13:32 PM
rw-r--r--
📁
grfx
-
08/29/2024 12:14:11 PM
rwxr-xr-x
📁
inc
-
08/29/2024 12:14:12 PM
rwxr-xr-x
📄
index.html
17.57 KB
08/29/2024 12:30:15 PM
rw-r--r--
📄
info.php
14 bytes
08/29/2024 12:13:32 PM
rw-r--r--
📄
navbar.php
0 bytes
08/29/2024 12:13:32 PM
rw-r--r--
📁
newReader
-
08/29/2024 12:17:22 PM
rwxr-xr-x
📄
phonedashboard.php
24.05 KB
08/29/2024 12:13:32 PM
rw-r--r--
📄
privacy.html
9.99 KB
08/29/2024 12:13:32 PM
rw-r--r--
📁
process
-
08/29/2024 12:17:55 PM
rwxr-xr-x
📄
readerTestComment.php
6.75 KB
08/29/2024 12:13:33 PM
rw-r--r--
📄
refund.html
7.34 KB
08/29/2024 12:13:33 PM
rw-r--r--
📄
reset.html
3.01 KB
08/29/2024 12:13:33 PM
rw-r--r--
📁
services
-
08/29/2024 12:33:02 PM
rwxr-xr-x
📄
signup.html
12.82 KB
08/29/2024 12:13:33 PM
rw-r--r--
📄
splash.html
1.11 KB
08/29/2024 12:13:33 PM
rw-r--r--
📁
texttovoice
-
08/29/2024 12:17:56 PM
rwxr-xr-x
📁
thumbsUp
-
08/29/2024 12:17:56 PM
rwxr-xr-x
📄
usage.html
30.88 KB
08/29/2024 12:13:33 PM
rw-r--r--
📄
zzzdashboard.php
11.95 KB
08/29/2024 12:13:33 PM
rw-r--r--
Editing: readerTestComment.php
Close
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Instagram-like Comment Section</title> <style> /* styles.css */ body { font-family: Arial, sans-serif; background-color: #e9eff1; margin: 0; padding: 20px; } .comment-section { max-width: 600px; margin: 0 auto; background: #fff; border-radius: 8px; box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); overflow: hidden; } .comment-form { display: flex; align-items: center; padding: 10px; border-bottom: 1px solid #ddd; background: #f5f5f5; } .comment-form input { flex: 1; border: none; padding: 10px; border-radius: 20px; margin-right: 10px; outline: none; transition: background-color 0.3s; } .comment-form input:focus { background-color: #fff; } .comment-form button { border: none; background-color: #0095f6; color: #fff; padding: 10px 20px; border-radius: 20px; cursor: pointer; transition: background-color 0.3s; } .comment-form button:hover { background-color: #007bb5; } .comments { max-height: 400px; overflow-y: auto; padding: 10px; } .comment { display: flex; align-items: flex-start; margin-bottom: 10px; transition: transform 0.3s, background-color 0.3s; border-radius: 8px; padding: 10px; background-color: #fff; position: relative; } .comment:hover { transform: scale(1.02); background-color: #f0f0f0; } .profile-pic { border-radius: 50%; width: 40px; height: 40px; margin-right: 10px; } .comment-content { flex: 1; } .username { font-weight: bold; color: #333; } .text { margin-top: 5px; color: #555; } .comment-actions { display: flex; align-items: center; gap: 10px; position: absolute; right: 10px; top: 10px; } .action-btn { border: none; background: none; cursor: pointer; transition: opacity 0.3s; } .action-btn:hover { opacity: 0.7; } .action-icon { width: 16px; height: 16px; } .modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); align-items: center; justify-content: center; z-index: 1000; } .modal-content { background: #fff; border-radius: 8px; width: 90%; max-width: 500px; padding: 20px; position: relative; } .modal-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #ddd; padding-bottom: 10px; } .modal-header h2 { margin: 0; color: #333; } .modal-close { border: none; background: none; font-size: 20px; cursor: pointer; color: #999; transition: color 0.3s; } .modal-close:hover { color: #333; } .modal-body { margin-top: 10px; } .modal-body input { width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 8px; box-sizing: border-box; } .modal-footer { margin-top: 10px; text-align: right; } .modal-footer button { border: none; background-color: #0095f6; color: #fff; padding: 10px 20px; border-radius: 20px; cursor: pointer; transition: background-color 0.3s; } .modal-footer button:hover { background-color: #007bb5; } </style> </head> <body> <div class="comment-section"> <div class="comment-form"> <input type="text" placeholder="Add a comment..."> <button onclick="openModal()">Post</button> </div> <div class="comments"> <div class="comment"> <img src="https://via.placeholder.com/40" alt="Profile Picture" class="profile-pic"> <div class="comment-content"> <span class="username">user1</span> <span class="text">This is a comment!</span> </div> <div class="comment-actions"> <button class="action-btn"><img src="https://via.placeholder.com/16" alt="Like Icon" class="action-icon"></button> <button class="action-btn"><img src="https://via.placeholder.com/16" alt="Reply Icon" class="action-icon"></button> </div> </div> <!-- Add more comments here --> </div> </div> <!-- Modal --> <div id="commentModal" class="modal"> <div class="modal-content"> <div class="modal-header"> <h2>Add a Comment</h2> <button class="modal-close" onclick="closeModal()">×</button> </div> <div class="modal-body"> <input type="text" placeholder="Write your comment..."> </div> <div class="modal-footer"> <button onclick="closeModal()">Cancel</button> <button>Post</button> </div> </div> </div> <script> function openModal() { document.getElementById('commentModal').style.display = 'flex'; } function closeModal() { document.getElementById('commentModal').style.display = 'none'; } </script> </body> </html>