This commit is contained in:
Tykayn 2025-02-14 15:35:03 +01:00 committed by tykayn
parent d8c1b7c0f6
commit d01ecdabba
13 changed files with 198 additions and 25 deletions

View file

@ -32,13 +32,16 @@
<li class="nav-item mx-0 mx-lg-1"><a class="nav-link py-3 px-0 px-lg-3 rounded" href="/#contact">Contact</a></li>
</ul>
</div>
{% include 'default/login-choices.html.twig' %}
</div>
</nav>
<!-- Masthead-->
<header class="masthead bg-primary text-white text-center">
<div class="container d-flex align-items-center flex-column">
<!-- Masthead Avatar Image-->
<img class="masthead-avatar mb-5" src="assets/img/avataaars.svg" alt="..." />
<img class="masthead-avatar mb-5" width="2rem" src="/img/avataaars.svg" alt="..." />
<!-- Masthead Heading-->
<h1 class="masthead-heading text-uppercase mb-0">Caisse Bliss</h1>
<!-- Icon Divider-->

View file

@ -3,7 +3,7 @@
<div class="row">
<div class="col-xs-12">
{% include 'default/login-choices.html.twig' %}
</div>
</div>
<div class="nav-elements">

View file

@ -7,15 +7,16 @@
{% block body %}
<div class="main-screen" id="homepage">
<div id="welcome">
<section class="bg-accessories" style="background : url('img/accessories.jpg')">
<section class="bg-accessories"
style=" background-image: url('/img/accessories.jpg') ">
{# <img src="img/accessories.jpg" alt="accesoires">#}
<div class="bg-shader">
<div class="container main-section">
<div class="row">
<div class="col-xs-12 padded-v">
<h1 class="text-center">
{#<i class="fa fa-circle-o-notch logo-main"></i>#}
<i class="fa fa-circle-o-notch logo-main"></i>
{% trans %}menu.title{% endtrans %}
</h1>
</div>

View file

@ -0,0 +1,20 @@
{% extends 'base.html.twig' %}
{% block title %}Hello LoginController!{% endblock %}
{% block body %}
<style>
.example-wrapper { margin: 1em auto; max-width: 800px; width: 95%; font: 18px/1.5 sans-serif; }
.example-wrapper code { background: #F5F5F5; padding: 2px 6px; }
</style>
<div class="example-wrapper">
<h1>Hello {{ controller_name }}! ✅</h1>
This friendly message is coming from:
<ul>
<li>Your controller at <code>/home/poule/encrypted/stockage-syncable/www/development/html/caisse-bliss/src/Controller/LoginController.php</code></li>
<li>Your template at <code>/home/poule/encrypted/stockage-syncable/www/development/html/caisse-bliss/templates/login/index.html.twig</code></li>
</ul>
</div>
{% endblock %}