templates/home.html.twig line 1
{% extends 'base.html.twig' %}{% block bodycont %}<div class="container-fluid bg-dark-gray h-100 bg-image"><div class="row h-100 flex-column flex-md-row align-items-center"><div class="col"></div><div class="col-sm-5"><div class="card text-center bg-dark text-white bg-gradient"><div class="card-body"><div class="border-bottom flex-grow-0"><div class="text-center mb-2 text-muted"><i class="fas fa-user-lock fa-5x"></i></div><h5 class="card-title">Nau mai, haere mai</h5></div><section class="flex-grow-1 position-relative"><div class="w-100 h-100 mt-3"><div class="d-grid gap-3">{% for type, flash_messages in app.session.flashBag.all %}{% for flash_message in flash_messages %}<div class="alert alert-{{ type }} alert-dismissible fade show mt-3 mb-0" role="alert">{{ flash_message }}<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button></div>{% endfor %}{% endfor %}{% if is_granted('IS_AUTHENTICATED_FULLY') %}<a class="btn bg-gradient btn-primary btn-block" href="{{ path('profile_' ~ app.user() | get_path_entity_name ~ '_edit') }}">Edit Profile</a><a class="btn bg-gradient btn-danger btn-block" href="{{ path('authentication_' ~ app.user() | get_path_entity_name ~ '_leave') }}">Sign out</a>{% else %}<a class="btn bg-gradient btn-secondary btn-block" href="{{ path('authentication_human_user_authenticate') }}">Sign In as a User</a><a class="btn bg-gradient btn-secondary btn-block" href="{{ path('authentication_group_user_authenticate') }}">Sign In as a Group</a><a class="btn bg-gradient btn-secondary btn-block" href="{{ path('authentication_organization_user_authenticate') }}">Sign In as an Organization</a>{% endif %}<hr class="my-0"><button class="btn btn-info btn-block" type="button" data-bs-toggle="offcanvas" data-bs-target="#offcanvasHelp" aria-controls="offcanvasHelp">How to I get started?</button>{# <a class="btn btn-warning btn-block" href="{{ path('questionsandanswers') }}">Questions and Answers</a>#}</div></div></section></div><div class="card-footer"><a class="fst-italic text-decoration-none text-muted" href="https://www.epiphron.co.nz">Copyright © {{ 'now' | date('Y') }} Epiphron Limited</a></div></div></div><div class="col"></div></div></div>{% endblock %}