templates/reset_password_base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="es">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport"
  6.           content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  7.     <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8.     <link rel="icon" href="{{ asset('img/favico.png') }}" sizes="24x24" type="image/png">
  9.     <title>{% block title %}HiMed Admin{% endblock %}</title>
  10.     {# Run `composer require symfony/webpack-encore-bundle`
  11.            and uncomment the following Encore helpers to start using Symfony UX #}
  12.     {% block stylesheets %}
  13.         {#{{ encore_entry_link_tags('app') }}#}
  14.         <!-- CSS -->
  15.         <link rel="stylesheet" type="text/css" href="{{ asset('css/style.default.css') }}"/>
  16.         <link rel="stylesheet" type="text/css" href="{{ asset('css/style.repassword.css') }}"/>
  17.     {% endblock %}
  18.     {% block javascripts %}
  19.         {#{{ encore_entry_script_tags('app') }}#}
  20.     {% endblock %}
  21. </head>
  22. <body>
  23. <div class="login_area">
  24.     <img class="logo" src="{{ asset('img/logo_admin.png') }}" title="HiMed Solutions S.A.S" alt="HiMed Solutions S.A.S"/>
  25.     {% block body %}{% endblock %}
  26.     <hr>
  27.     <a href="{{ path('app_login') }}" id="LostPassword">Iniciar SesiĆ³n</a>
  28. </div><!-- contenedor del login -->
  29. </body>
  30. </html>