templates/Admin/Security/login.html.twig line 1

Open in your IDE?
  1. {% apply spaceless %}
  2. <!doctype html>
  3. <html>
  4.     <head>
  5.         {{ include('Admin/head.html.twig') }}
  6.     </head>
  7.     <body>
  8.         <div class="container home">
  9.             <form action="{{ path('admin_login_check') }}" method="post" class="form-signin">
  10.                 <h2 class="form-signin-heading">TikiCMS 4.0</h2>
  11.                 {% if error %}
  12.                     <p class="error" style="color: red;">
  13.                         {{ error.message }}
  14.                     </p>
  15.                 {% endif %}
  16.                 <input type="text" name="_username" value="{{ last_username }}" class="form-control input-block-level" placeholder="Usuário" />
  17.                 <input type="password" name="_password" class="form-control input-block-level" placeholder="Senha" />
  18.                 <button type="submit" class="btn btn-primary">Entrar</button>
  19.             </form>
  20.         </div>
  21.         {{ include('Admin/foot.html.twig') }}
  22.     </body>
  23. </html>
  24. {% endapply %}