templates/default/index.html.twig line 1

  1. {% extends 'base.html.twig' %}
    
    {% block body %}
    
    <center>
        <h1>Bievenido a attendING</h1>
    </center>
    
    {% if not is_granted('IS_AUTHENTICATED_FULLY') %}
    
        <div class="col-md-4 col-md-offset-4">
            <form action="{{ path('app_login') }}" method="post">
                <label for="username">Email:</label>
                <input type="text" id="username" name="_username" value="{{ last_username }}">
            
                <input type="hidden" name="_csrf_token" value="{{ csrf_token('authenticate') }}">
            
                <label for="password">Password:</label>
                <input type="password" id="password" name="_password">
            
                {# If you want to control the URL the user is redirected to on success
                <input type="hidden" name="_target_path" value="/account"> #}
            
                <button type="submit">login</button>
            </form>
            <!-- Button trigger modal -->
    
            <a href="https://intrawww.ing.puc.cl/siding/problemas.phtml">¿Olvidó su contraseña?</a>
    
    
        </div>
    
    {% endif %}
    
    {% endblock %}