Uvix's picture
讗转讛 诪住讜讙诇 诇诪砖讜讱 驻专讜讬讬拽讟 讙讬讟 ?
94ad5eb verified
Raw
History Blame Contribute Delete
2.76 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Git Project Visualizer</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>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
</head>
<body class="bg-gray-100 min-h-screen flex flex-col">
<custom-navbar></custom-navbar>
<main class="flex-grow container mx-auto px-4 py-8">
<div class="max-w-3xl mx-auto bg-white rounded-xl shadow-md overflow-hidden p-6">
<h1 class="text-3xl font-bold text-gray-800 mb-6">Git Project Visualizer</h1>
<div class="mb-8">
<h2 class="text-xl font-semibold text-gray-700 mb-4">Enter GitHub Repository Details</h2>
<form id="repoForm" class="space-y-4">
<div>
<label for="username" class="block text-sm font-medium text-gray-700 mb-1">GitHub Username</label>
<input type="text" id="username" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-2 focus:ring-blue-500 focus:border-blue-500" required>
</div>
<div>
<label for="repo" class="block text-sm font-medium text-gray-700 mb-1">Repository Name</label>
<input type="text" id="repo" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-2 focus:ring-blue-500 focus:border-blue-500" required>
</div>
<button type="submit" class="bg-blue-600 hover:bg-blue-700 text-white font-medium py-2 px-6 rounded-md transition duration-200 flex items-center">
<i data-feather="github" class="mr-2"></i> Fetch Repository
</button>
</form>
</div>
<div id="loading" class="hidden text-center py-12">
<div class="animate-spin rounded-full h-12 w-12 border-t-2 border-b-2 border-blue-500 mx-auto mb-4"></div>
<p class="text-gray-600">Fetching repository data...</p>
</div>
<div id="results" class="hidden">
<!-- Results will be displayed here -->
</div>
</div>
</main>
<custom-footer></custom-footer>
<script src="script.js"></script>
<script>
feather.replace();
</script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>