54b5227a0d
Started buildig the authorization infrastructure to 1. create the initial admin class to then 2. the Auth manager class can be created to manage access based on roles. added number of template files as well just as a UI base to get things started. Auth Framework Part 2 will complete the Auth mangager and clean up the admin area.
13 lines
315 B
Twig
13 lines
315 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 role="intro">
|
|
This is the screendoor member page
|
|
|
|
{{ include("forms/add-member-form.twig") }}
|
|
</section>
|
|
{% endblock %}
|