This repository has been archived on 2022-11-02. You can view files and clone it, but cannot push or open issues or pull requests.
Sand/src/templates/download.html

32 lines
852 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>{{ config.name }}</title>
<link rel="stylesheet" href="../styles/style.css" />
</head>
<body>
<header class="text-center">
<h1 class="text-title">{{ config.name }}</h1>
</header>
<main>
<div class="download-area">
<h3>Téléchargement</h3>
<p>Cliquez pour lancer le téléchargement du fichier</p>
<button>Hihi</button>
</div>
</main>
<footer>
<p>NPNO</p>
</footer>
<script type="module" src="../js/download.js"></script>
</body>
</html>