CoolFace
Apppublic

fdsafasdffdsaafds/forestry-lab-explorer

sourceHugging Faceupdated 11mo agoView on Hugging Face
0likes
index.html47 linesDownload Raw Back to root
1<!DOCTYPE html>2<html lang="en">3<head>4    <meta charset="UTF-8">5    <meta name="viewport" content="width=device-width, initial-scale=1.0">6    <title>Forestry Lab Explorer</title>7    <link rel="stylesheet" href="style.css">8    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">9    <script src="https://cdn.tailwindcss.com"></script>10    <script src="https://www.gstatic.com/firebasejs/10.1.0/firebase-app-compat.js"></script>11    <script src="https://www.gstatic.com/firebasejs/10.1.0/firebase-auth-compat.js"></script>12    <script src="https://www.gstatic.com/firebasejs/10.1.0/firebase-firestore-compat.js"></script>13    <link rel="icon" href="assets/leaf-icon.png">14</head>15<body class="bg-green-50">16    <custom-splash-screen></custom-splash-screen>17    <custom-navbar></custom-navbar>18    <div id="auth-modal" class="hidden fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50">19        <div class="bg-white rounded-lg p-8 max-w-md w-full">20            <h3 class="text-xl font-bold text-green-800 mb-4">Login Required</h3>21            <p class="mb-6">Please login to access this feature.</p>22            <div class="flex justify-end gap-4">23                <button id="cancel-login" class="px-4 py-2 border border-gray-300 rounded">Cancel</button>24                <a href="#/login" class="px-4 py-2 bg-green-600 text-white rounded">Login</a>25            </div>26        </div>27    </div>28<main id="app" class="container mx-auto px-4 py-8">29        <!-- Content will be dynamically loaded here -->30        <div id="content" class="min-h-screen"></div>31    </main>32 33    <custom-footer></custom-footer>34 35    <!-- Web Components -->36    <script src="components/navbar.js"></script>37    <script src="components/footer.js"></script>38    <script src="components/splash-screen.js"></script>39    40    <!-- Firebase Config -->41    <script src="firebase-config.js"></script>42    43    <!-- Main App -->44    <script src="app.js"></script>45<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>46</body>47</html>