templates/fpwd_view.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="utf-8" />
  5.         <meta http-equiv="X-UA5-Compatible" content="IE=edge" />
  6.         <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
  7.         <meta name="description" content="Collectiv'Finance pour la Banque des Territoires" />
  8.         <meta name="author" content="INFONAUTE - DPF" />
  9.         <title>{% block title %}CF : mot de passe oublié{% endblock %}</title>
  10.         <link rel="icon" type="image/x-icon" href="/img/favicon-bdt.png" />
  11.         {% block stylesheets %}{{ encore_entry_link_tags('app') }}{% endblock %}
  12.         {# complément css si besoin 
  13.             ?link rel="stylesheet" href="/css/plugins/footable/footable.core.css"
  14.         #}
  15.     </head>
  16.     <body class="white-bg bezBody">
  17.         {% block javascripts %}{{ encore_entry_script_tags('app') }}{% endblock %}
  18.         <script src="/js/main.js"></script>
  19.         
  20.         <div class="row">
  21.             <div class="col-md-3 text-center">
  22.                 <a href="https://www.banquedesterritoires.fr/collectivites-epl" target="_blank">
  23.                     <img src="/img/logo-bdt.svg" title="La Banque des Territoires" height="67" width="300" />
  24.                 </a>
  25.             </div>
  26.             <div class="col-md-6 text-left">
  27.                 <a href="{{ path('pageaccueil') }}" title="Retour à la page de connexion" style="text-decoration: none;">
  28.                     <img src="/img/logo_cf.png" title="Collectiv'Finance" height="50" width="300" />
  29.                 </a>
  30.             </div>
  31.             <div class="col-md-3 text-center">
  32.                 <a href="{{ path('identification') }}" title="vous identifier" style="text-decoration: none;">
  33.                     <button class="btn btn-primary">Connexion</button>
  34.                 </a>
  35.             </div>
  36.         </div>
  37.         
  38.         <div class="bezBody">
  39.             {% block body %}{% endblock body %}
  40.         </div>
  41.         
  42.         <div style="padding-top:20px;">
  43.             {{ include('default/footer.html.twig') }}
  44.         </div>
  45.         {# tout session getFlashBag => toast #}
  46.         <div id="untoast"></div>
  47.         <script>        {# niveau global  #}
  48.             $(document).ready(function(){
  49.                 {% if app.request.hasPreviousSession %}
  50.                     {% for type, messages in app.session.flashbag.all() %}
  51.                         {% set pos = 0 %}
  52.                         {% for message in messages %}
  53.                             showNotification('{{pos}}', '{{ type }}', 'Notification', '{{ message }}');
  54.                             {% set pos = pos + 110 %}
  55.                         {% endfor %}
  56.                     {% endfor %}
  57.                 {% endif %}
  58.                 
  59.                 $(document).ajaxError(function (event, jqXHR) {
  60.                     if (403 === jqXHR.status) {
  61.                         window.location.reload();
  62.                     }
  63.                 });
  64.                 $('[data-bs-toggle="tooltip"]').tooltip(); 
  65.             });
  66.             
  67.         </script>
  68.     </body>
  69. </html>