templates/base-secuity.html.twig line 1

  1. <!DOCTYPE html>
  2. <html dir="rtl">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>{% block title %}Welcome!{% endblock %}</title>
  6.     <link rel="icon" href="https://i0.wp.com/farahtech.ma/wp-content/uploads/2021/11/cropped-ImadTechlogosource-1.png?fit=80%2C80&amp;ssl=1" sizes="80x80">
  7.     {% block stylesheets %}
  8.         {{ encore_entry_link_tags('app') }}
  9.     {% endblock %}
  10.     {% block javascripts %}
  11.         {{ encore_entry_script_tags('app') }}
  12.     {% endblock %}
  13. </head>
  14. <body dir="rtl">
  15.     <section class="container">
  16.         <div class="row justify-content-center">
  17.             <div class="col-md-7 col-lg-5">
  18.                 <div class="login-wrap p-4 p-md-5">
  19.                     <div class="icon d-flex align-items-center justify-content-center">
  20.                         <span class="fas fa-user fa-3x"></span>
  21.                     </div>
  22.                     <h3 class="text-center mb-4">{% block form_title %}{% endblock %}</h3>
  23.                     {% block body %}{% endblock %}
  24.                 </div>
  25.             </div>
  26.         </div>
  27.     </section>
  28. </body>
  29. </html>