86 lines
4.6 KiB
HTML
86 lines
4.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Manabox Inventory Management</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
|
|
<script>
|
|
tailwind.config = {
|
|
darkMode: 'class',
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ['Inter', 'sans-serif'],
|
|
},
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
</head>
|
|
<body class="bg-gray-900 min-h-screen text-gray-100">
|
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
|
|
<div class="bg-gray-800 rounded-xl shadow-sm p-6 mb-8">
|
|
<h1 class="text-3xl font-bold text-gray-100 mb-2">Manabox Inventory Management</h1>
|
|
<p class="text-gray-400">Upload and manage your Manabox inventory</p>
|
|
</div>
|
|
|
|
<!-- File Upload Section -->
|
|
<div class="bg-gray-800 rounded-xl shadow-sm p-6 mb-8">
|
|
<h2 class="text-xl font-semibold text-gray-100 mb-6">Upload Manabox CSV</h2>
|
|
<form id="uploadForm" class="space-y-4">
|
|
<div>
|
|
<label for="source" class="block text-sm font-medium text-gray-300 mb-2">Source</label>
|
|
<input type="text" id="source" name="source" required
|
|
class="w-full rounded-lg border-gray-600 bg-gray-700 text-gray-100 focus:ring-blue-500 focus:border-blue-500">
|
|
</div>
|
|
<div>
|
|
<label for="description" class="block text-sm font-medium text-gray-300 mb-2">Description</label>
|
|
<textarea id="description" name="description" rows="3" required
|
|
class="w-full rounded-lg border-gray-600 bg-gray-700 text-gray-100 focus:ring-blue-500 focus:border-blue-500"></textarea>
|
|
</div>
|
|
<div>
|
|
<label for="csvFile" class="block text-sm font-medium text-gray-300 mb-2">CSV File</label>
|
|
<input type="file" id="csvFile" name="file" accept=".csv" required
|
|
class="w-full rounded-lg border-gray-600 bg-gray-700 text-gray-100 focus:ring-blue-500 focus:border-blue-500">
|
|
</div>
|
|
<button type="submit" class="px-4 py-2 bg-blue-600 text-white rounded-lg hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:ring-offset-2 transition-colors">
|
|
Upload CSV
|
|
</button>
|
|
</form>
|
|
</div>
|
|
|
|
<!-- File Uploads List Section -->
|
|
<div class="bg-gray-800 rounded-xl shadow-sm p-6">
|
|
<div class="flex items-center justify-between mb-6">
|
|
<h2 class="text-xl font-semibold text-gray-100">Recent Uploads</h2>
|
|
<div class="flex items-center space-x-4">
|
|
<button onclick="selectAllUploads()" class="px-4 py-2 bg-blue-600 text-white rounded-lg hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:ring-offset-2 transition-colors">
|
|
Select All
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<div class="overflow-x-auto">
|
|
<table class="min-w-full divide-y divide-gray-700">
|
|
<thead>
|
|
<tr>
|
|
<th class="px-6 py-3 text-left text-xs font-medium text-gray-300 uppercase tracking-wider">
|
|
<input type="checkbox" id="selectAll" class="rounded border-gray-600 bg-gray-800 text-blue-600 focus:ring-blue-500">
|
|
</th>
|
|
<th class="px-6 py-3 text-left text-xs font-medium text-gray-300 uppercase tracking-wider">Source</th>
|
|
<th class="px-6 py-3 text-left text-xs font-medium text-gray-300 uppercase tracking-wider">Description</th>
|
|
<th class="px-6 py-3 text-left text-xs font-medium text-gray-300 uppercase tracking-wider">Upload Date</th>
|
|
<th class="px-6 py-3 text-left text-xs font-medium text-gray-300 uppercase tracking-wider">Status</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="uploadsList" class="divide-y divide-gray-700">
|
|
<!-- Uploads will be populated here -->
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script src="/manabox.js"></script>
|
|
</body>
|
|
</html> |