maybe copy button yes?

This commit is contained in:
Lee 2023-04-15 18:22:11 +01:00
parent 0755a8a336
commit d3e6fc0026

@ -30,26 +30,30 @@
<?php <?php
// if the map parameter is set, display the map // if the map parameter is set, display the map
if (isset($_GET["map"])) { if (isset($_GET["map"])) {
echo '<div class="mb-5"> echo
<label for="map" class="block text-white text-sm font-bold mb-2">Successfully uploaded Map</label> '
<span class="bg-gray-700 text-white rounded w-full py-2 px-3 focus:outline-none focus:shadow-outline">!wip ' . $_GET["map"] . '</span> <div class="mb-5">
</div> <label for="map" class="block text-white text-sm font-bold mb-2">Successfully uploaded Map</label>
'; <span class="bg-gray-700 text-white rounded w-full py-2 px-3 focus:outline-none focus:shadow-outline">!wip ' . $_GET["map"] . '</span>
<button class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded focus:outline-none focus:shadow-outline" onclick="navigator.clipboard.writeText(\'!wip ' . $_GET["map"] . '\')">Copy</button>
</div>
';
return;
} }
// if the map parameter is not set, display the upload form // if the map parameter is not set, display the upload form
else { echo
echo '<form action="upload.php" method="post" enctype="multipart/form-data"> '
<div class="mb-5"> <form action="upload.php" method="post" enctype="multipart/form-data">
<label for="map" class="block text-white text-sm font-bold mb-2">Map</label> <div class="mb-5">
<input type="file" name="map" id="map" class="bg-gray-700 text-white rounded w-full py-2 px-3 focus:outline-none focus:shadow-outline"> <label for="map" class="block text-white text-sm font-bold mb-2">Map</label>
</div> <input type="file" name="map" id="map" class="bg-gray-700 text-white rounded w-full py-2 px-3 focus:outline-none focus:shadow-outline">
<div class="mb-5"> </div>
<button type="submit" class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded focus:outline-none focus:shadow-outline">Upload</button> <div class="mb-5">
</div> <button type="submit" class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded focus:outline-none focus:shadow-outline">Upload</button>
</form> </div>
'; </form>
} ';
?> ?>
</div> </div>
</div> </div>