diff options
| author | Jfriedli | 2021-03-18 11:35:04 +0100 |
|---|---|---|
| committer | Jfriedli | 2021-03-18 11:35:04 +0100 |
| commit | 81780062aea2f9de8dd704de1da7743937b79c38 (patch) | |
| tree | a7266d5ded29e8f5cae1ee5b96cf244c7c3ae6dd /templates/index.html | |
| parent | 7f253f71866a35a4c681a9ac37109d0ea4ab3d0e (diff) | |
started refactoring index and download page
Diffstat (limited to 'templates/index.html')
| -rw-r--r-- | templates/index.html | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/templates/index.html b/templates/index.html index 008f5f3..f0268f3 100644 --- a/templates/index.html +++ b/templates/index.html | |||
| @@ -1,26 +1,26 @@ | |||
| 1 | {% extends "base.html" %} | 1 | {% extends "base.html" %} |
| 2 | {% block content %} | 2 | {% block content %} |
| 3 | <div class="flex justify-center"> | 3 | <div class="flex justify-center"> |
| 4 | <div class="max-w-lg rounded overflow-hidden shadow-lg pb-4"> | 4 | <div class="w-50 rounded overflow-hidden shadow-lg pb-4"> |
| 5 | <div class="px-6 py-4"> | 5 | <div class="px-6 py-4"> |
| 6 | <div class="font-bold text-xl mb-2">Remove Metadata</div> | 6 | <div class="font-bold text-xl mb-2">Remove Metadata</div> |
| 7 | <p class="text-gray-700 text-base"> | 7 | <p class="text-gray-700 text-base"> |
| 8 | The file you see is just the tip of the iceberg. Remove the hidden metadata. | 8 | The file you see is just the tip of the iceberg. Remove the hidden metadata. |
| 9 | </p> | 9 | </p> |
| 10 | </div> | 10 | </div> |
| 11 | <div class="px-6 pt-4 pb-2 grid grid-rows-1"> | 11 | <div class="px-6 pt-4 pb-2 grid grid-rows-1"> |
| 12 | <form method="post" enctype="multipart/form-data" class="grid grid-rows-1"> | 12 | <form method="post" enctype="multipart/form-data" class="grid grid-rows-1"> |
| 13 | <input type="file" name="file" id="upload_file" accept="{{ mimetypes | join(', ') }}"> | 13 | <input type="file" name="file" id="upload_file" accept="{{ mimetypes | join(', ') }}"> |
| 14 | <button class="mt-4 bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded" type="submit" value="Upload">Remove Metadata</button> | 14 | <button class="mt-4 bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded" type="submit" |
| 15 | </form> | 15 | value="Upload">Remove Metadata</button> |
| 16 | </div> | 16 | </form> |
| 17 | </div> | 17 | </div> |
| 18 | </div> | 18 | </div> |
| 19 | <button | 19 | </div> |
| 20 | class="p-0 w-10 h-10 absolute sm:bottom-8 md:bottom-16 sm:right-8 md:right-16 bg-blue-300 hover:bg-blue-400 rounded-full active:shadow-lg mouse shadow transition ease-in duration-200 focus:outline-none" | 20 | <button |
| 21 | > | 21 | class="p-0 w-10 h-10 absolute sm:bottom-8 md:bottom-16 sm:right-8 md:right-16 bg-blue-300 hover:bg-blue-400 rounded-full active:shadow-lg mouse shadow transition ease-in duration-200 focus:outline-none"> |
| 22 | <a href="/info" role="link" class="w-6 h-6 text-white inline-block font-bold"> | 22 | <a href="/info" role="link" class="w-6 h-6 text-white inline-block font-bold"> |
| 23 | ? | 23 | ? |
| 24 | </a> | 24 | </a> |
| 25 | </button> | 25 | </button> |
| 26 | {% endblock %} | 26 | {% endblock %} \ No newline at end of file |
