Spaces:
Running
Running
File size: 4,817 Bytes
1663d6a | 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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | <!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Submit Script | Roblox Script Haven</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
</head>
<body class="bg-gray-900 text-gray-100 min-h-screen">
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4 py-8 max-w-3xl">
<div class="mb-8">
<h1 class="text-3xl font-bold mb-2">Submit Your Script</h1>
<p class="text-gray-400">Share your Roblox script with the community and help fellow players</p>
</div>
<form class="bg-gray-800 rounded-xl p-6 border border-gray-700">
<div class="mb-6">
<label for="script-name" class="block text-sm font-medium mb-2">Script Name</label>
<input type="text" id="script-name" class="w-full bg-gray-700 border border-gray-600 rounded-lg px-4 py-2 focus:outline-none focus:ring-2 focus:ring-primary-500 focus:border-transparent" placeholder="e.g. Infinite Yield">
</div>
<div class="mb-6">
<label for="script-description" class="block text-sm font-medium mb-2">Description</label>
<textarea id="script-description" rows="4" class="w-full bg-gray-700 border border-gray-600 rounded-lg px-4 py-2 focus:outline-none focus:ring-2 focus:ring-primary-500 focus:border-transparent" placeholder="Describe what your script does..."></textarea>
</div>
<div class="mb-6">
<label for="script-code" class="block text-sm font-medium mb-2">Script Code</label>
<textarea id="script-code" rows="8" class="w-full bg-gray-700 border border-gray-600 rounded-lg px-4 py-2 font-mono text-sm focus:outline-none focus:ring-2 focus:ring-primary-500 focus:border-transparent" placeholder="Paste your Lua script here..."></textarea>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-6">
<div>
<label for="script-category" class="block text-sm font-medium mb-2">Category</label>
<select id="script-category" class="w-full bg-gray-700 border border-gray-600 rounded-lg px-4 py-2 focus:outline-none focus:ring-2 focus:ring-primary-500 focus:border-transparent">
<option value="">Select a category</option>
<option value="admin">Admin</option>
<option value="exploit">Exploit</option>
<option value="esp">ESP</option>
<option value="hub">Game Hub</option>
<option value="other">Other</option>
</select>
</div>
<div>
<label for="script-executor" class="block text-sm font-medium mb-2">Recommended Executor</label>
<select id="script-executor" class="w-full bg-gray-700 border border-gray-600 rounded-lg px-4 py-2 focus:outline-none focus:ring-2 focus:ring-primary-500 focus:border-transparent">
<option value="">Select executor</option>
<option value="synapse">Synapse X</option>
<option value="krnl">KRNL</option>
<option value="scriptware">Script-Ware</option>
<option value="any">Any Executor</option>
</select>
</div>
</div>
<div class="mb-6">
<label class="flex items-center">
<input type="checkbox" class="rounded bg-gray-700 border-gray-600 text-primary-500 focus:ring-primary-500">
<span class="ml-2 text-sm">I confirm this script is safe and doesn't contain malware</span>
</label>
</div>
<div class="flex justify-end gap-4">
<a href="index.html" class="px-6 py-2 rounded-lg border border-gray-600 hover:bg-gray-700 transition-colors">Cancel</a>
<button type="submit" class="bg-primary-500 hover:bg-primary-600 text-white px-6 py-2 rounded-lg font-medium transition-colors flex items-center gap-2">
<i data-feather="upload"></i> Submit Script
</button>
</div>
</form>
</main>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
<script>feather.replace();</script>
</body>
</html> |