Files
groclist/frontend/templates/index.html
T

18 lines
420 B
HTML

{% extends "base.html" %}
{% block title %}Index{% endblock %}
{% block head %}
{{ super() }}
<style type="text/css">
.important { color: #336699; }
</style>
{% endblock %}
{% block content %}
<h1>Groclist</h1>
<p class="important">
Welkom bij Groclist
</p>
<form method="post" action="/">
<input type="submit" value="Inloggen" name="login"/>
</form>
{% endblock %}