maplocation / templates /dashboard.html
sarveshpatel's picture
Upload 28 files
630129a verified
Raw
History Blame Contribute Delete
1.15 kB
<!DOCTYPE html>
<html lang="en" data-theme="light">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Live GPS Tracker</title>
<link rel="stylesheet"
href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css"
integrity="sha256-p4NxAoJBhIIN+hmNHrzRCf9tD/miZyoHS5obTRR9BMY="
crossorigin="" />
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"
integrity="sha256-20nQCchB9co0qIjJZRGuk2/Z9VM+kNiyxNV1lvTlZBo="
crossorigin=""></script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" />
<link rel="stylesheet" href="/static/css/m3.css" />
<link rel="stylesheet" href="/static/css/dashboard.css" />
</head>
<body>
<!-- The dashboard is rendered reactively by Preact — see /static/js/dashboard.js -->
<div id="app"></div>
<script type="module" src="/static/js/dashboard.js"></script>
</body>
</html>