templates/security.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="fr">
  3. <head>
  4.     <title>My Flow - Connexion{% block title %}{% endblock %}</title>
  5.     <meta name="viewport" content="width=device-width, initial-scale=1" />
  6.     <meta charset="utf-8" />
  7.     {% if is_agency() == true %}
  8.                 <link rel="shortcut icon" href="{{ asset(dynamic_favicon()) }}"/>
  9.             {% else %}
  10.                 <link rel="shortcut icon" href="{{ asset('build/media/favicon.ico') }}"/>
  11.             {% endif %}
  12.     <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700|Titillium+Web:300,400,500,600,700" />
  13.     {% block stylesheets %}
  14.         {{ encore_entry_link_tags('plugins/global/plugins.bundle') }}
  15.         {{ encore_entry_link_tags('css/style.bundle') }}
  16.         {{ encore_entry_link_tags('app') }}
  17.     {% endblock %}
  18. {% block scripts %}
  19.         {{ encore_entry_script_tags('app') }}
  20. {% endblock %}
  21.     {% if app.request.attributes.get('agency_connect') is not null %}
  22.         {% set userCompanyDataContent =  get_user_company_data_agency(app.request.attributes.get('agency_connect')['id']) %}
  23.         {% set company = get_company(app.request.attributes.get('agency_connect')['id']) %}
  24.     {% endif %}
  25.     {% if userCompanyDataContent is defined %}
  26.         {% set user_primary_color = userCompanyDataContent.primary_color is not empty ? userCompanyDataContent.primary_color : '#f975c4'%}
  27.         {% set user_second_color = userCompanyDataContent.second_color is not empty ? userCompanyDataContent.second_color : '#08085c' %}
  28.         {% set user_text_color = userCompanyDataContent.text_color is not empty ? userCompanyDataContent.text_color : '#1968CD' %}
  29.         {% set user_icon_color = userCompanyDataContent.icon_color is not empty ? userCompanyDataContent.icon_color : '#4a4b68' %}
  30.         {% set user_background_color = userCompanyDataContent.background_color is not empty ? userCompanyDataContent.background_color : '#04006E' %}
  31.         {% set user_title_color = userCompanyDataContent.title_color is not empty ? userCompanyDataContent.title_color : '#08085c' %}
  32.         {% set user_company_logo = userCompanyDataContent.logo_company is not empty ? userCompanyDataContent.logo_company : '' %}
  33.         {% else %}
  34.             {% set userCompanyDataContent = ''%}
  35.             {% set user_primary_color = '#f975c4' %}
  36.             {% set user_second_color = '#08085c' %}
  37.             {% set user_text_color = '#1968CD' %}
  38.             {% set user_icon_color = '#4a4b68' %}
  39.             {% set user_background_color = '#04006E' %}
  40.             {% set user_title_color = '#08085c' %}
  41.             {% set user_company_logo = '' %}
  42.     {% endif %}
  43. </head>
  44. <body id="kt_body login" class="bg-body" data-turbo="false">
  45. <style type="text/css">
  46.     :root {
  47.     --my-flow-pink:{{user_primary_color}}; /*couleur principale #f975c4*/ 
  48. }
  49.     {# debut Custom primary color #}
  50.    button.btn-primary-custom{
  51.     background-color:var(--my-flow-pink) !important;
  52. }
  53. .color-primary{
  54.     color:var(--my-flow-pink) !important;
  55. }
  56. .color-second{
  57.      color:#000064 !important;
  58. }
  59. input:checked[type=checkbox]{
  60.     background-color:var(--my-flow-pink) !important;
  61. }
  62.     {# fin text de détails #}
  63. </style>
  64. <div class="d-flex flex-column flex-root" style="justify-content:center">
  65.     <div class="">
  66.         {{ include('_flashbag.html.twig') }}
  67.         <div class="py-10 ">
  68.             <div class="">
  69.                 {# <div class="mb-5 container-logo" >
  70.                     <a href="{{ path('app_login') }}">
  71.                         {% if company is defined and company is not null and company.logoName is not null %}
  72.                             <img style="max-width: 175px;height: auto;max-height: 75px;" width="auto" src="{{ asset('/uploads/images/company/') }}{{ company.logoName }}" class="app-logo" alt="my flow logo">
  73.                         {% else %}
  74.                              <img src="{{ asset('build/media/logo-myflow.png') }}" class="app-logo" alt="my flow logo">
  75.                         {% endif %}
  76.                     </a>
  77.                 </div> #}
  78.                 <div class="">
  79.                     {% block content %}{% endblock %}
  80.                 </div>
  81.             </div>
  82.         </div>
  83.     </div>
  84. </div>
  85. </body>
  86. </html>