---
geoserv/web/index.html | 13 +++++++++----
1 file changed, 9 insertions(+), 4 deletions(-)
diff --git a/geoserv/web/index.html b/geoserv/web/index.html
index 259fcd3..a94ea6a 100644
--- a/geoserv/web/index.html
+++ b/geoserv/web/index.html
@@ -1,9 +1,14 @@
<!DOCTYPE html>
<head>
- <script src='https://unpkg.com/maplibre-gl@latest/dist/maplibre-gl.js'></script>
- <link href='https://unpkg.com/maplibre-gl@latest/dist/maplibre-gl.css' rel='stylesheet' />
+ <script src="https://unpkg.com/maplibre-gl@latest/dist/maplibre-gl.js"></script>
+ <link href="https://unpkg.com/maplibre-gl@latest/dist/maplibre-gl.css" rel="stylesheet" />
+ <script src="https://cdn.tailwindcss.com?plugins=forms"></script>
+ <script src="map.js" defer></script>
</head>
<body>
- <div id='map' style='width: 100vw; height: 100vh;'></div>
- <script src="map.js" ></script>
+ <div id="map" class="fixed inset-0"></div>
+ <div class="fixed right-3 top-3 flex flex-col gap-3 rounded-md bg-white p-3 shadow-md w-72">
+ <button type="submit" class="flex justify-center rounded-md bg-indigo-600 px-3 py-1.5 text-sm font-semibold text-white shadow-sm hover:bg-indigo-500">Create share</button>
+ <input type="text" placeholder="https://loc.example.com/123abc" class="rounded-md border-0 py-1.5 text-gray-900 shadow-sm ring-1 ring-inset ring-gray-300 placeholder:text-gray-400" />
+ </div>
</body>
--
2.42.1