fixed path issue with db downloader

This commit is contained in:
Luca Haid
2026-01-08 10:07:06 +01:00
parent 6517ce2d14
commit cf37f5055e

View File

@@ -6,8 +6,6 @@
<title>DB Restore Tool</title> <title>DB Restore Tool</title>
<script src="https://cdn.tailwindcss.com"></script> <script src="https://cdn.tailwindcss.com"></script>
<style> <style>
.file-item:hover { background-color: #f3f4f6; }
.file-item.selected { background-color: #dbeafe; }
.spinner { animation: spin 1s linear infinite; } .spinner { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } } @keyframes spin { to { transform: rotate(360deg); } }
</style> </style>
@@ -166,7 +164,7 @@
<span id="progress-percent">0%</span> <span id="progress-percent">0%</span>
</div> </div>
<div class="w-full bg-gray-200 rounded-full h-4"> <div class="w-full bg-gray-200 rounded-full h-4">
<div id="progress-bar" class="bg-blue-600 h-4 rounded-full transition-all duration-300" style="width: 0%"></div> <div id="progress-bar" class="bg-blue-600 h-4 rounded-full transition-all duration-300" style="width: 0"></div>
</div> </div>
</div> </div>
@@ -184,6 +182,6 @@
</div> </div>
</div> </div>
<script src="{{ url_for('static', filename='js/app.js') }}"></script> <script src="{{ url_for('static', filename='app.js') }}"></script>
</body> </body>
</html> </html>