2023-01-12 16:14:31 +01:00
|
|
|
{% extends 'base.html.twig' %}
|
|
|
|
|
|
|
|
{% block localstyle %}
|
2024-06-30 12:06:40 +02:00
|
|
|
<style>
|
2023-01-12 16:14:31 +01:00
|
|
|
.thumbnail {
|
|
|
|
text-align:center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.thumbnail img {
|
|
|
|
width:200px;
|
|
|
|
border: 5px solid #fff;
|
|
|
|
border-radius: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.caption p {
|
|
|
|
text-align:justify;
|
|
|
|
font-size:14px;
|
|
|
|
word-wrap: break-word;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.caption ul {
|
|
|
|
margin-top:-10px;
|
|
|
|
padding-left: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.caption li {
|
|
|
|
text-align:left;
|
|
|
|
font-size:14px;
|
|
|
|
word-wrap: break-word;
|
|
|
|
font-style: italic;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
margin-top:10px;
|
|
|
|
}
|
2024-06-30 12:06:40 +02:00
|
|
|
</style>
|
2023-01-12 16:14:31 +01:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block body %}
|
2024-06-30 12:06:40 +02:00
|
|
|
<div style="width: 400px;margin: auto;text-align: center;margin-top: 100px;">
|
2023-01-12 16:14:31 +01:00
|
|
|
<a href="{{ path("app_home") }}">
|
2024-06-30 12:06:40 +02:00
|
|
|
<img src="{{ path('app_minio_image',{file:"logo/"~app.session.get("logolight")}) }}" style="max-width: 100%; max-height:200px;margin-bottom: 30px;">
|
2023-01-12 16:14:31 +01:00
|
|
|
<h1 style="text-transform:uppercase; padding-top:0px">{{ app.session.get('appname') }}</h1>
|
|
|
|
</a>
|
|
|
|
|
|
|
|
<br>
|
|
|
|
|
|
|
|
{% if not app.user and moderegistration!="none" and appMasteridentity=="SQL"%}
|
|
|
|
<a href="{{ path("app_resetpwd01") }}">Mot de passe oublié ?</a>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|