crispdata-tool / upload.html
Crispinoigara's picture
Instruction:
3b65624 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Upload Content | CrispData</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<style>
.sidebar {
transition: all 0.3s ease;
}
.sidebar.collapsed {
width: 5rem;
}
.sidebar.collapsed .sidebar-item-text {
display: none;
}
.sidebar.collapsed .sidebar-header-text {
display: none;
}
.sidebar.collapsed .sidebar-item {
justify-content: center;
}
.upload-dropzone {
border: 2px dashed #cbd5e0;
transition: all 0.3s ease;
}
.upload-dropzone.active {
border-color: #6e8efb;
background-color: rgba(110, 142, 251, 0.1);
}
.tab-content {
display: none;
}
.tab-content.active {
display: block;
}
.progress-bar {
height: 0.5rem;
border-radius: 0.25rem;
background-color: #e5e7eb;
}
.progress-bar-fill {
height: 100%;
border-radius: 0.25rem;
background-color: #6366f1;
transition: width 0.3s ease;
}
</style>
</head>
<body class="bg-gray-50 font-sans antialiased">
<div class="flex h-screen overflow-hidden">
<!-- Sidebar -->
<div class="sidebar bg-white shadow-md w-64 flex-shrink-0 flex flex-col">
<div class="flex items-center justify-between p-4 border-b">
<div class="flex items-center">
<i data-feather="layers" class="h-8 w-8 text-indigo-600"></i>
<span class="sidebar-header-text ml-2 text-xl font-bold text-gray-900">CrispData</span>
</div>
<button id="sidebar-toggle" class="text-gray-500 hover:text-gray-700 focus:outline-none">
<i data-feather="chevron-left"></i>
</button>
</div>
<div class="flex-1 overflow-y-auto">
<nav class="px-2 py-4">
<div class="space-y-1">
<a href="#" class="sidebar-item text-gray-600 hover:bg-gray-50 hover:text-gray-900 group flex items-center px-3 py-2 text-sm font-medium rounded-md">
<i data-feather="home" class="text-gray-400 group-hover:text-gray-500 flex-shrink-0 h-6 w-6"></i>
<span class="sidebar-item-text ml-3">Dashboard</span>
</a>
<a href="#" class="sidebar-item bg-indigo-50 text-indigo-700 group flex items-center px-3 py-2 text-sm font-medium rounded-md">
<i data-feather="upload" class="text-indigo-500 flex-shrink-0 h-6 w-6"></i>
<span class="sidebar-item-text ml-3">Upload Content</span>
</a>
<a href="#" class="sidebar-item text-gray-600 hover:bg-gray-50 hover:text-gray-900 group flex items-center px-3 py-2 text-sm font-medium rounded-md">
<i data-feather="folder" class="text-gray-400 group-hover:text-gray-500 flex-shrink-0 h-6 w-6"></i>
<span class="sidebar-item-text ml-3">Content Library</span>
</a>
<a href="#" class="sidebar-item text-gray-600 hover:bg-gray-50 hover:text-gray-900 group flex items-center px-3 py-2 text-sm font-medium rounded-md">
<i data-feather="bar-chart-2" class="text-gray-400 group-hover:text-gray-500 flex-shrink-0 h-6 w-6"></i>
<span class="sidebar-item-text ml-3">Analytics</span>
</a>
<a href="#" class="sidebar-item text-gray-600 hover:bg-gray-50 hover:text-gray-900 group flex items-center px-3 py-2 text-sm font-medium rounded-md">
<i data-feather="users" class="text-gray-400 group-hover:text-gray-500 flex-shrink-0 h-6 w-6"></i>
<span class="sidebar-item-text ml-3">Audience</span>
</a>
<a href="#" class="sidebar-item text-gray-600 hover:bg-gray-50 hover:text-gray-900 group flex items-center px-3 py-2 text-sm font-medium rounded-md">
<i data-feather="settings" class="text-gray-400 group-hover:text-gray-500 flex-shrink-0 h-6 w-6"></i>
<span class="sidebar-item-text ml-3">Settings</span>
</a>
</div>
<div class="mt-8">
<h3 class="sidebar-header-text px-3 text-xs font-semibold text-gray-500 uppercase tracking-wider">
Content Types
</h3>
<div class="mt-1 space-y-1">
<a href="#" class="sidebar-item text-gray-600 hover:bg-gray-50 hover:text-gray-900 group flex items-center px-3 py-2 text-sm font-medium rounded-md">
<i data-fe
</body>
</html>