spotdlweb/templates/erreur.html

37 lines
963 B
HTML

<!--<head>-->
<!-- <meta charset="UTF-8">-->
<!-- <link rel="stylesheet" href="static/css/style.css", filename= 'style.css'>-->
<!-- <title>SpotDL Web</title>-->
<!--</head>-->
<!--<body>-->
<!-- <div class="container">-->
<!-- <h1 class="title"> SpotDL Web </h1>-->
<!-- <h2> Veuillez entrer au moins une URL ! </h2>-->
<!-- <button class="btn" onclick="window.location.href = '/';">Accueil</button>-->
<!-- {% if message %}-->
<!-- <p>{{ message }}</p>-->
<!-- {% endif %}-->
<!-- </div>-->
<!--</body>-->
{% extends 'layout.html' %}
{% block body %}
<body>
<div class="container">
<h1 class="title"> SpotDL Web </h1>
<h2> Veuillez entrer au moins une URL ! </h2>
<button class="btn" onclick="window.location.href = '/';">Accueil</button>
{% if message %}
<p>{{ message }}</p>
{% endif %}
</div>
</body>
{% endblock body %}