{% extends 'members/member/dashboard.html.twig' %}
{% block stylesheets %}
{{ parent() }}
#content-layout
{
width:100%;
min-height: 800px;
display-flex;
flex-direction:column;
justify-content: flex-start;
}
.card
{
background-color: #fff;
padding: 40px;
border-radius: 10px;
box-shadow: 10px 5px 13px -1px rgba(0,0,0,0.94);
width: 600px;
}
.card div
{
margin-bottom: 15px;
}
.card input, .card button
{
width: 100%;
padding: 20px;
border: none;
border-bottom: 2px solid #ccc;
outline: none;
transition: border-color 0.3s;
}
.card input:focus
{
border-color: #6200ea;
}
.card button
{
background-color: #6200ea;
color: #fff;
border-radius: 5px;
cursor: pointer;
border: none;
font-size: 16px;
}
.card button:hover
{
background-color: #3700b3;
}
.card label
{
font-weight: bold;
display: block;
margin-bottom: 5px;
}
{% endblock %}
{% block main_content %}
{% block tab_bar %}
{{ parent() }}
{% endblock %}
{% block content %}
réponse
{{ form(form) }}
{% endblock %}
{% endblock %}
{% block javascript %}
{{ parent() }}
{% endblock %}