35 lines
959 B
HTML
35 lines
959 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Résultats</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<style>
|
|
body {
|
|
background-color: #121212;
|
|
color: white;
|
|
}
|
|
.container {
|
|
margin-top: 50px;
|
|
}
|
|
.output-box {
|
|
background-color: #333;
|
|
padding: 20px;
|
|
border-radius: 8px;
|
|
white-space: pre-wrap;
|
|
color: lightgreen;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1 class="text-center">Résultats des commandes</h1>
|
|
<div class="output-box">
|
|
{{ output }}
|
|
</div>
|
|
<a href="{{ zip_url }}" class="btn btn-primary mt-3">Télécharger les fichiers en ZIP</a>
|
|
</div>
|
|
</body>
|
|
</html>
|