{% extends 'custom-base.html.twig' %}{% block body %} <div class="col col-login mx-auto text-center"> <a href="{{ absolute_url(path('app_home')) }}"> <img src="{{absolute_url(asset('build/images/brand/logo.png'))}}" class="header-brand-img" alt=""> </a> </div> <!-- CONTAINER OPEN --> <div class="container-login100"> <div class="wrap-login100 p-0"> <div class="card-body"> <form class="login100-form validate-form "> <div class="text-center mb-4"> <img src="{{absolute_url(asset('build/images/faces/6.jpg'))}}" alt="lockscreen image" class="avatar avatar-xxl brround mb-2"> <h4>Elena Gilbert</h4> </div> <div class="wrap-input100 validate-input" data-bs-validate="Password is required"> <input class="input100" type="password" name="pass" placeholder="Password"> <span class="focus-input100"></span> <span class="symbol-input100"> <i class="fa fa-lock" aria-hidden="true"></i> </span> </div> <div class="container-login100-form-btn"> <a href="{{ absolute_url(path('app_home')) }}" class="login100-form-btn btn-primary"> Unlock </a> </div> <div class="text-center pt-2"> <!-- <span class="txt1"> I Forgot </span> --> <a class="txt2" href="{{ absolute_url(path('app_forgot_password')) }}"> Forgot password </a> </div> </form> </div> <div class="card-footer"> <div class="d-flex justify-content-center my-3"> <a href="javascript:void(0)" class="social-login text-center me-4"> <i class="fa fa-google"></i> </a> <a href="javascript:void(0)" class="social-login text-center me-4"> <i class="fa fa-facebook"></i> </a> <a href="javascript:void(0)" class="social-login text-center"> <i class="fa fa-twitter"></i> </a> </div> </div> </div> </div> <!-- CONTAINER CLOSED -->{% endblock %}