spotdlweb/templates/finish.html
Guillaume 9b04348b32 On branch ddl
Changes to be committed:
	modified:   app.py
	modified:   templates/finish.html
	modified:   templates/index.html
Téléchargement direct d'un fichier zip puis supprime le dossier.
2023-05-29 12:31:01 +02:00

19 lines
494 B
HTML

{% extends 'layout.html' %}
{% block body %}
<body>
<div class="container">
<h1 class="title"> SpotDL Web </h1>
<h2>Votre musique est prête à être téléchargée</h2>
<button class="btn" onclick="window.location.href = '/zip';">Télécharger</button>
<button class="btn" onclick="window.location.href = '/';">Accueil</button>
{% if message %}
<p>{{ message }}</p>
{% endif %}
</div>
</body>
{% endblock body %}