13 lines
497 B
HTML
13 lines
497 B
HTML
<head>
|
|
<meta charset="UTF-8">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename= 'css/style.css') }}">
|
|
<title>SpotDL Web</title>
|
|
</head>
|
|
<body>
|
|
<h1> SpotDL Web </h1>
|
|
<h2> Téléchargement Terminé </h2>
|
|
<!-- <a class="btn btn-success" href="{{url_for('download')}}">Download</a> -->
|
|
<button onclick="window.location.href ='{{url_for('download')}}';">Download</button>
|
|
<button onclick="window.location.href = '/';">Télécharger à nouveau</button>
|
|
</body>
|