Implement basic login function; add basic styling

This commit is contained in:
Lexi / Zoe 2021-07-26 23:52:59 +02:00
parent 2bb7ea54a2
commit 8be7988d97
Signed by: binaryDiv
GPG key ID: F8D4956E224DA232
12 changed files with 252 additions and 27 deletions

View file

@ -0,0 +1,11 @@
{% extends "base.html.twig" %}
{% block title %}Dashboard{% endblock %}
{% block content %}
<h2>Dashboard</h2>
<p>Hello, {{ username }}!</p>
<a href="/logout">Logout.</a>
{% endblock %}