26 lines
690 B
HTML
26 lines
690 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">UniSquat</p>
|
|
<div class="flex">
|
|
<p>🚧 <b>Version en cours de développement !</b> 🚧</p>
|
|
</div>
|
|
<div class="flex">
|
|
<p>Développé par <a href="https://forge.chapril.org/Wantoo">Wantoo</a>.</p>
|
|
</div>
|
|
<div class="flex">
|
|
<button onClick="history.go(-1);">Retour</button>
|
|
</div>
|
|
</main>
|
|
<footer></footer>
|
|
</body>
|
|
</html>
|