spotdlweb/templates/finish.html

18 lines
381 B
HTML

{% 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 %}