Réorganisation du code

This commit is contained in:
2023-05-17 07:54:38 +02:00
parent 61c61d203b
commit fba7a5a057
14 changed files with 343 additions and 174 deletions

18
templates/finish.html Normal file
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 %}