20 lines
489 B
HTML
20 lines
489 B
HTML
<!DOCTYPE html>
|
|
<html lang="">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>UniSquat</title>
|
|
<link rel="stylesheet" type="text/css" href="../static/style.css">
|
|
<meta name="viewport" content="width=300, initial-scale=1" />
|
|
</head>
|
|
<body>
|
|
{% include "base.html" %}
|
|
<main>
|
|
<p id="greet">Bienvenue sur UniSquat !</p>
|
|
<div class="flex">
|
|
<button onClick="location.href='/app'">Démarrer</button>
|
|
</div>
|
|
</main>
|
|
<footer></footer>
|
|
</body>
|
|
</html>
|