diff --git a/forum/auth.html b/forum/auth.html
deleted file mode 100644
index 67fb062..0000000
--- a/forum/auth.html
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
-
-
MilkNet Forum
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/forum/script.js b/forum/script.js
deleted file mode 100644
index eff5cea..0000000
--- a/forum/script.js
+++ /dev/null
@@ -1,50 +0,0 @@
-function uploadImage() {
- const fileInput = document.getElementById('image-upload');
- const file = fileInput.files[0];
-
- if (!file) {
- alert('Please select an image to upload.');
- return;
- }
-
- const formData = new FormData();
- formData.append('file', file);
-
- // Send the file to culiao.lol for upload
- fetch('https://culiao.lol/upload', {
- method: 'POST',
- body: formData,
- })
- .then(response => response.json())
- .then(data => {
- if (data.success) {
- const imageUrl = data.url; // Assuming the response includes the URL
- alert('Image uploaded successfully! Image URL: ' + imageUrl);
- addImageToPost(imageUrl);
- } else {
- console.error('Upload failed:', data);
- alert('Image upload failed. Please try again.');
- }
- })
- .catch(error => {
- console.error('Error uploading image:', error);
- alert('An error occurred during image upload.');
- });
-}
-
-function addImageToPost(imageUrl) {
- const postContent = document.getElementById('post-content');
- postContent.value += `\n`; // Add image URL to post content
-}
-
-function submitPost() {
- const postContent = document.getElementById('post-content').value;
- if (!postContent) {
- alert("Please write something before submitting.");
- return;
- }
-
- // Here you can process the post content and submit it to your forum (e.g., save it to localStorage or display on the page)
- console.log("Post submitted: " + postContent);
- alert("Post submitted!");
-}
diff --git a/forum/style.css b/forum/style.css
deleted file mode 100644
index 0fc7321..0000000
--- a/forum/style.css
+++ /dev/null
@@ -1,91 +0,0 @@
-/* Solid black background */
-body, html {
- height: 100%;
- margin: 0;
- padding: 0;
- font-family: sans-serif;
- background: black;
- color: white;
- display: flex;
- flex-direction: column;
- align-items: center;
- overflow-y: auto;
-}
-
-/* Header logo */
-header {
- text-align: center;
- margin: 30px 0;
-}
-
-header h1 {
- font-size: 2.5em;
- margin: 0;
- color: white;
-}
-
-/* Containers */
-#new-thread, .thread, .reply, .auth-container {
- background: rgba(255, 255, 255, 0.05);
- border: 1px solid rgba(255, 255, 255, 0.2);
- padding: 15px;
- margin-bottom: 20px;
- border-radius: 10px;
- width: 90%;
- max-width: 700px;
-}
-
-/* Text inputs */
-textarea, input[type="text"], input[type="password"] {
- width: 100%;
- background: #222;
- color: white;
- padding: 10px;
- margin-top: 10px;
- border: none;
- border-radius: 5px;
-}
-
-/* Buttons */
-button {
- margin-top: 10px;
- padding: 10px 16px;
- border: none;
- background: #444;
- color: white;
- border-radius: 5px;
- cursor: pointer;
-}
-
-button:hover {
- background: #666;
-}
-
-/* Images */
-img {
- max-width: 100%;
- margin-top: 10px;
- border-radius: 5px;
-}
-
-/* Emoji picker area */
-.emoji-wrap {
- position: relative;
-}
-
-.emoji-button {
- position: absolute;
- right: 10px;
- bottom: 10px;
- background: transparent;
- border: none;
- font-size: 1.2em;
- cursor: pointer;
- color: white;
-}
-
-/* Auth container for login/register */
-.auth-container {
- margin-top: 50px;
- text-align: center;
-}