Some checks reported errors
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.
19 lines
494 B
HTML
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 %} |