Changes to be committed:
Some checks failed
continuous-integration/drone/push Build encountered an error

modified:   .drone.yml
	modified:   app.py
	new file:   docker-compose.yaml
	modified:   static/js/script.js
	new file:   templates/finish_local.html
	renamed:    templates/finish.html -> templates/finish_server.html
	modified:   templates/index.html

Il est maintenant possible de choisir entre télécharger sur le server
ou en local.
This commit is contained in:
2023-06-05 22:56:34 +02:00
parent 0696c81a83
commit 74e936c0f8
7 changed files with 120 additions and 17 deletions

View File

@@ -0,0 +1,18 @@
{% extends 'layout.html' %}
{% block body %}
<body>
<div class="container">
<h1 class="title"> SpotDL Web </h1>
<h2> Téléchargement terminé </h2>
<button class="btn" onclick="window.location.href = '/';">Accueil</button>
{% if message %}
<p>{{ message }}</p>
{% endif %}
</div>
</body>
{% endblock body %}