{% extends 'navigation.html.twig' %}
{% block title %}{{title}}{% endblock %}
{% block stylesheets %}
{{ parent() }}
{# <link rel="stylesheet" href="{{asset('syscrmnc/' ~ controller ~ '/css/' ~ filename ~ '.css')}}"> #}
{% endblock %}
{% block javascripts %}
{{ parent() }}
{# <script src="{{asset('syscrmnc/' ~ controller ~ '/js/' ~ filename ~ '.js')}}"></script> #}
<style>
.card-custom {
border-radius: 1.5rem;
box-shadow: 0 6px 20px rgba(0,0,0,0.1);
width: 50%;
}
.title-accent {
color: #6f42c1; /* Violet Bootstrap */
font-weight: 700;
}
</style>
{% endblock %}
{% block container %}
<section id="services" class="services mt-5">
<div class="container">
<div class="section-title">
<h2>{{title}}</h2>
<p>Espace Membre</p>
</div>
<div class="block-content fontPoppins">
<div class="card card-custom p-5 mb-5 mt-3 mx-auto">
<h2 class="title-accent text-center mb-4">Connexion</h2>
<form>
<div class="mb-3">
<label for="email" class="form-label">Adresse email</label>
<input type="email" class="form-control" id="email" placeholder="Entrez votre email" required>
</div>
<div class="mb-3">
<label for="password" class="form-label">Mot de passe</label>
<input type="password" class="form-control" id="password" placeholder="Entrez votre mot de passe" required>
</div>
<div class="d-flex justify-content-between align-items-center mb-3">
<div class="form-check">
<input class="form-check-input" type="checkbox" id="remember">
<label class="form-check-label" for="remember">Se souvenir de moi</label>
</div>
<a href="#" class="small text-decoration-none">Mot de passe oubliƩ ?</a>
</div>
<div class="d-grid">
<button type="submit" class="btn btn-primary">Se connecter</button>
</div>
</form>
</div>
</div>
</div>
</section>
{% endblock %}