templates/home/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}devis-facture.fr{% endblock %}
  3. {% block body %}
  4. <div class="container-fluid">
  5. {# IN ENTER RESPONSIVE #}
  6. <center class="text-center home_watch in-enter-resp" style="width: 100%; height: 100vh;">
  7. <img src="{{ asset('images/ICHIGO.webp') }}" class="img-fluid mt-auto"
  8. style="height: 5rem; width: auto; object-fit: cover; margin-top: 0px !important;" alt="">
  9. <div class="d-flex" style="margin-top: 10rem;">
  10. <div class="col">
  11. <img src="{{ asset('images/infinix.png') }}" class="img-fluid" alt="">
  12. </div>
  13. <div class="col">
  14. <img src="{{ asset('images/techno.png') }}" class="img-fluid" alt="">
  15. </div>
  16. <div class="col">
  17. <img src="{{ asset('images/itel.png') }}" class="img-fluid" alt="">
  18. </div>
  19. </div>
  20. <div class="d-flex justify-content-center" style="margin-top: 10rem;">
  21. <a href="/login" style="text-decoration: none;font-size: 3REM;DISPLAY: FLEX;ALIGN-ITEMS: CENTER;">
  22. <button class="btn btn-primary rounded-circle mt-2">
  23. <span class="arrow" style="
  24. FONT-SIZE: 2REM;
  25. ">➜</span>
  26. </button>
  27. <span class="ml-2 right-side-simple">CONTINUER</span>
  28. </a>
  29. </div>
  30. </center>
  31. <div class="row vh-100 in-enter">
  32. <div class="col-lg-8 col-md-12 col-sm-12 d-flex flex-column justify-content-center align-items-center">
  33. <img src="{{ asset('images/ICHIGO.webp') }}" class="img-fluid mt-auto"
  34. style="height: 8rem; width: auto; object-fit: cover;" alt="">
  35. <div class="partner d-flex mt-auto pb-5">
  36. <img src="{{ asset('images/infinix.png') }}" class="phone-brand" alt="">
  37. <img src="{{ asset('images/techno.png') }}" class="phone-brand" alt="">
  38. <img src="{{ asset('images/itel.png') }}" class="phone-brand" alt="">
  39. </div>
  40. </div>
  41. <div
  42. class="home_watch col-lg-4 col-md-12 col-sm-12 d-flex flex-column justify-content-center align-items-center">
  43. <div class="right-side ms-5">
  44. <h1>
  45. <span class="right-side-simple">TENDANCE &amp;</span><br>
  46. <span class="right-side-bold">ACCESSIBLE</span>
  47. </h1>
  48. <div class="mt-5">
  49. <a href="{{path('app_login')}}" style="text-decoration: none">
  50. <button class="btn btn-primary rounded-circle">
  51. <span class="arrow">&#10140;</span>
  52. </button>
  53. <span class="ml-2 right-side-simple">CONTINUER</span>
  54. </a>
  55. </div>
  56. </div>
  57. </div>
  58. </div>
  59. </div>
  60. {% endblock %}