templates/user/login/form.html.twig line 1

  1. {% extends'@app/base.html.twig' %}
  2. {% block head__custom_css %}
  3.     <link href="{{ asset('theme/custom/css/login.css') }}"
  4.         rel="stylesheet"
  5.     />
  6. {% endblock %}
  7. {% block body %}
  8.     <div class="container d-flex align-items-center justify-content-center" style="height: 100vh">
  9.         <div class="card login-card">
  10.             <div class="card-header text-center">
  11.                 <img alt="Mirko" src="{{ asset('theme/img/logo/mirko-white.svg') }}" />
  12.             </div>
  13.             <div class="card-body text-center">
  14.                 <a class="btn btn-primary btn-lg"
  15.                    style="width: 100%; background-color: #dd4b39;"
  16.                    href="{{ url('user.login.google.auth') }}" role="button">
  17.                     <i class="fab fa-google"></i> Login
  18.                 </a>
  19.             </div>
  20.         </div>
  21.     </div>
  22. {% endblock %}