55 lines
1.1 KiB
Twig
55 lines
1.1 KiB
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block localstyle %}
|
|
<style>
|
|
.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;
|
|
}
|
|
</style>
|
|
{% endblock %}
|
|
|
|
|
|
{% block body %}
|
|
<div style="width: 400px;margin: auto;text-align: center;margin-top: 100px;">
|
|
<a href="{{ path("app_home") }}">
|
|
<img src="{{ path('app_minio_image',{file:"logo/"~app.session.get("logolight")}) }}" style="max-width: 100%; max-height:200px;margin-bottom: 30px;">
|
|
<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 %} |