templates/backend/login.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="utf-8">
  5.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.     <title>Gestor Faes Farma</title>
  7.     <!-- Tell the browser to be responsive to screen width -->
  8.     <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
  9.     <!-- Bootstrap 3.3.5 -->
  10.     <link rel="stylesheet" href="/bootstrap/css/bootstrap.min.css">
  11.     <!-- Font Awesome -->
  12.     <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
  13.     <!-- Ionicons -->
  14.     <link rel="stylesheet" href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
  15.     <!-- Theme style -->
  16.     <link rel="stylesheet" href="/dist/css/AdminLTE.min.css">
  17.     <!-- iCheck -->
  18.     <link rel="stylesheet" href="/plugins/iCheck/square/blue.css">
  19.     <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
  20.     <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
  21.     <!--[if lt IE 9]>
  22.     <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
  23.     <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
  24.     <![endif]-->
  25. </head>
  26. <body class="hold-transition login-page">
  27. <div class="login-box">
  28.     <div class="login-logo">
  29.         Gestor Faes Farma
  30.     </div><!-- /.login-logo -->
  31.     <div class="login-box-body">
  32.         {% if error %}
  33.         <p class="login-box-msg" style="color:red;">Datos de acceso incorrectos</p>
  34.         {% endif %}
  35.         <form action="{{ path('app_login') }}" method="POST">
  36.             <div class="form-group has-feedback">
  37.                 <input type="text" name="email" class="form-control" placeholder="Email" value="{{ last_username }}">
  38.                 <span class="glyphicon glyphicon-envelope form-control-feedback"></span>
  39.             </div>
  40.             <div class="form-group has-feedback">
  41.                 <input type="password" class="form-control" placeholder="ContraseƱa" name="password">
  42.                 <span class="glyphicon glyphicon-lock form-control-feedback"></span>
  43.             </div>
  44.             <div class="row">
  45.                 <div class="col-xs-8">
  46.                     <input type="hidden" name="_csrf_token" value="{{ csrf_token('authenticate') }}">
  47.                 </div><!-- /.col -->
  48.                 <div class="col-xs-4">
  49.                     <button type="submit" class="btn btn-primary btn-block btn-flat">Entrar</button>
  50.                 </div><!-- /.col -->
  51.             </div>
  52.         </form>
  53.     </div><!-- /.login-box-body -->
  54. </div><!-- /.login-box -->
  55. <!-- jQuery 2.1.4 -->
  56. <script src="/plugins/jQuery/jQuery-2.1.4.min.js"></script>
  57. <!-- Bootstrap 3.3.5 -->
  58. <script src="/bootstrap/js/bootstrap.min.js"></script>
  59. <!-- iCheck -->
  60. <script src="/plugins/iCheck/icheck.min.js"></script>
  61. <script>
  62.     $(function () {
  63.         $('input').iCheck({
  64.             checkboxClass: 'icheckbox_square-blue',
  65.             radioClass: 'iradio_square-blue',
  66.             increaseArea: '20%' // optional
  67.         });
  68.     });
  69. </script>
  70. </body>
  71. </html>