You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
865 B
HTML

<!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>Luto de La Lune d'Argent</title>
<link rel="stylesheet" href="/style.css">
</head>
<body>
<nav class="navbar">
<div id="login-form">
{% if session.logged %}
<a href="/logout?callback={{request.path}}">logout</a>
{% else %}
<form method="POST" action="/login">
<input type="text" name="login" placeholder="Login" />
<input type="password" name="password" placeholder="Password"/>
<input type="hidden" name="callback" value="{{request.path}}" />
<input type="submit" name="submit" value="Se connecter"/>
</form>
{% endif %}
</div>
</nav>
<div id="main">
{% block main %}
{% endblock %}
</div>
</body>
</html>