mirror of
https://koodu.h-i.works/projects/thebadspace
synced 2025-05-06 14:41:02 -05:00
Auth class is back up and running to handle user authorizaion as well as session managment. Implemented basic usage on admin index class just for an example. Added a couple of new template files and css to start defining the overall style of pages and UI.
18 lines
342 B
Twig
18 lines
342 B
Twig
{% extends "base/frame.twig" %}
|
|
{% block stylesheets %}
|
|
<link rel="stylesheet" type="text/css" href="/assets/css/front/start.css?=sdfsdf">
|
|
{% endblock %}
|
|
|
|
{% block main %}
|
|
<section>
|
|
<h1>
|
|
Welcome to the Den.
|
|
</h1>
|
|
Hey
|
|
{{ handle }}
|
|
. Nice to see you again.
|
|
<a href="/logout">Bye bye</a>
|
|
|
|
</section>
|
|
{% endblock %}
|