<?php

use Twig\Environment;
use Twig\Error\LoaderError;
use Twig\Error\RuntimeError;
use Twig\Extension\CoreExtension;
use Twig\Extension\SandboxExtension;
use Twig\Markup;
use Twig\Sandbox\SecurityError;
use Twig\Sandbox\SecurityNotAllowedTagError;
use Twig\Sandbox\SecurityNotAllowedFilterError;
use Twig\Sandbox\SecurityNotAllowedFunctionError;
use Twig\Source;
use Twig\Template;
use Twig\TemplateWrapper;

/* @AdminLTE/layout/security-layout.html.twig */
class __TwigTemplate_4a02f0b6ce8d043b89bd8c7ab6acf574 extends Template
{
    private Source $source;
    /**
     * @var array<string, Template>
     */
    private array $macros = [];

    public function __construct(Environment $env)
    {
        parent::__construct($env);

        $this->source = $this->getSourceContext();

        $this->parent = false;

        $this->blocks = [
            'html_start' => [$this, 'block_html_start'],
            'head' => [$this, 'block_head'],
            'title' => [$this, 'block_title'],
            'stylesheets' => [$this, 'block_stylesheets'],
            'body_start' => [$this, 'block_body_start'],
            'after_body_start' => [$this, 'block_after_body_start'],
            'login_box' => [$this, 'block_login_box'],
            'logo_login' => [$this, 'block_logo_login'],
            'login_box_icon' => [$this, 'block_login_box_icon'],
            'login_box_msg' => [$this, 'block_login_box_msg'],
            'login_box_error' => [$this, 'block_login_box_error'],
            'login_form' => [$this, 'block_login_form'],
            'login_form_start' => [$this, 'block_login_form_start'],
            'login_form_end' => [$this, 'block_login_form_end'],
            'login_social_auth' => [$this, 'block_login_social_auth'],
            'login_actions' => [$this, 'block_login_actions'],
            'javascripts' => [$this, 'block_javascripts'],
        ];
    }

    protected function doDisplay(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        // line 1
        yield "<!DOCTYPE html";
        yield from $this->unwrap()->yieldBlock('html_start', $context, $blocks);
        yield ">
<html>
<head>
    ";
        // line 4
        yield from $this->unwrap()->yieldBlock('head', $context, $blocks);
        // line 9
        yield "    <title>";
        yield from $this->unwrap()->yieldBlock('title', $context, $blocks);
        yield "</title>
    ";
        // line 10
        yield from $this->unwrap()->yieldBlock('stylesheets', $context, $blocks);
        // line 13
        yield "</head>
<body";
        // line 14
        yield from $this->unwrap()->yieldBlock('body_start', $context, $blocks);
        yield " class=\"hold-transition login-page\">
";
        // line 15
        yield from $this->unwrap()->yieldBlock('after_body_start', $context, $blocks);
        // line 16
        yield from $this->unwrap()->yieldBlock('login_box', $context, $blocks);
        // line 85
        yield "
";
        // line 86
        yield from $this->unwrap()->yieldBlock('javascripts', $context, $blocks);
        // line 89
        yield "
</body>
</html>
";
        yield from [];
    }

    // line 1
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_html_start(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        yield from [];
    }

    // line 4
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_head(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        // line 5
        yield "    <meta charset=\"utf-8\">
    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">
    <meta content=\"width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no\" name=\"viewport\">
    ";
        yield from [];
    }

    // line 9
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_title(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        yield "AdminLTE 2 | Log in";
        yield from [];
    }

    // line 10
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_stylesheets(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        // line 11
        yield "    <link rel=\"stylesheet\" href=\"";
        yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("adminlte.css"), "html", null, true);
        yield "\">
    ";
        yield from [];
    }

    // line 14
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_body_start(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        yield from [];
    }

    // line 15
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_after_body_start(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        yield from [];
    }

    // line 16
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_login_box(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        // line 17
        yield "    <div class=\"login-box\">
        <div class=\"login-logo\">
            ";
        // line 19
        yield from $this->unwrap()->yieldBlock('logo_login', $context, $blocks);
        // line 20
        yield "        </div>
        <div class=\"login-box-body\">
            <div class=\"login-box-msg\">
                <h3 class=\"login-head\">
                    ";
        // line 24
        yield from $this->unwrap()->yieldBlock('login_box_icon', $context, $blocks);
        // line 25
        yield "                    ";
        yield from $this->unwrap()->yieldBlock('login_box_msg', $context, $blocks);
        // line 26
        yield "                </h3>
                ";
        // line 27
        yield from $this->unwrap()->yieldBlock('login_box_error', $context, $blocks);
        // line 32
        yield "            </div>

            ";
        // line 34
        yield from $this->unwrap()->yieldBlock('login_form', $context, $blocks);
        // line 58
        yield "            ";
        yield from $this->unwrap()->yieldBlock('login_social_auth', $context, $blocks);
        // line 69
        yield "            ";
        yield from $this->unwrap()->yieldBlock('login_actions', $context, $blocks);
        // line 82
        yield "        </div>
    </div>
";
        yield from [];
    }

    // line 19
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_logo_login(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        yield "<b>Admin</b>LTE";
        yield from [];
    }

    // line 24
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_login_box_icon(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        yield from [];
    }

    // line 25
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_login_box_msg(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        yield from [];
    }

    // line 27
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_login_box_error(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        // line 28
        yield "                    ";
        if ((($tmp = ((array_key_exists("error", $context)) ? (Twig\Extension\CoreExtension::default(($context["error"] ?? null), false)) : (false))) && $tmp instanceof Markup ? (string) $tmp : $tmp)) {
            // line 29
            yield "                        <div class=\"alert alert-danger\">";
            yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\TranslationExtension']->trans(CoreExtension::getAttribute($this->env, $this->source, ($context["error"] ?? null), "messageKey", [], "any", false, false, false, 29), CoreExtension::getAttribute($this->env, $this->source, ($context["error"] ?? null), "messageData", [], "any", false, false, false, 29), "security"), "html", null, true);
            yield "</div>
                    ";
        }
        // line 31
        yield "                ";
        yield from [];
    }

    // line 34
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_login_form(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        // line 35
        yield "            <form action=\"";
        yield "\" method=\"post\">
                ";
        // line 36
        yield from $this->unwrap()->yieldBlock('login_form_start', $context, $blocks);
        // line 37
        yield "                <div class=\"form-group has-feedback\">
                    <input type=\"text\" name=\"_username\" class=\"form-control\" placeholder=\"";
        // line 38
        yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\TranslationExtension']->trans("Username", [], "AdminLTEBundle"), "html", null, true);
        yield "\" value=\"";
        yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(((array_key_exists("last_username", $context)) ? (Twig\Extension\CoreExtension::default(($context["last_username"] ?? null), "")) : ("")), "html", null, true);
        yield "\">
                    <span class=\"glyphicon glyphicon-envelope form-control-feedback\"></span>
                </div>
                <div class=\"form-group has-feedback\">
                    <input name=\"_password\" type=\"password\" class=\"form-control\" placeholder=\"";
        // line 42
        yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\TranslationExtension']->trans("Password", [], "AdminLTEBundle"), "html", null, true);
        yield "\">
                    <span class=\"glyphicon glyphicon-lock form-control-feedback\"></span>
                </div>
                <div class=\"form-group\">
                    <input id=\"remember_me\" name=\"_remember_me\" type=\"checkbox\">
                    <label for=\"remember_me\">";
        // line 47
        yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\TranslationExtension']->trans("Remember Me", [], "AdminLTEBundle"), "html", null, true);
        yield "</label>
                </div>
                <div class=\"form-group\">
                    <button type=\"submit\" class=\"btn btn-primary btn-block\">";
        // line 50
        yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\TranslationExtension']->trans("Sign In", [], "AdminLTEBundle"), "html", null, true);
        yield "</button>
                </div>
                ";
        // line 55
        yield "                ";
        yield from $this->unwrap()->yieldBlock('login_form_end', $context, $blocks);
        // line 56
        yield "            </form>
            ";
        yield from [];
    }

    // line 36
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_login_form_start(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        yield from [];
    }

    // line 55
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_login_form_end(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        yield from [];
    }

    // line 58
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_login_social_auth(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        // line 59
        yield "            <div class=\"social-auth-links text-center\">
                <p>";
        // line 60
        yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\TranslationExtension']->trans("- OR -", [], "AdminLTEBundle"), "html", null, true);
        yield "</p>
                <a href=\"#\" class=\"btn btn-block btn-social btn-facebook btn-flat\"><i class=\"fab fa-facebook\"></i>
                    ";
        // line 62
        yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\TranslationExtension']->trans("Sign in using Facebook", [], "AdminLTEBundle"), "html", null, true);
        yield "
                </a>
                <a href=\"#\" class=\"btn btn-block btn-social btn-google btn-flat\"><i class=\"fab fa-google-plus\"></i>
                    ";
        // line 65
        yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\TranslationExtension']->trans("Sign in using Google+", [], "AdminLTEBundle"), "html", null, true);
        yield "
                </a>
            </div>
            ";
        yield from [];
    }

    // line 69
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_login_actions(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        // line 70
        yield "                ";
        if (($this->env->getRuntime('KevinPapst\AdminLTEBundle\Twig\RuntimeExtension')->getRouteByAlias("adminlte_password_reset") != "adminlte_password_reset")) {
            // line 71
            yield "                    <a href=\"";
            yield $this->extensions['Symfony\Bridge\Twig\Extension\RoutingExtension']->getPath($this->env->getRuntime('KevinPapst\AdminLTEBundle\Twig\RuntimeExtension')->getRouteByAlias("adminlte_password_reset"));
            yield "\">
                        ";
            // line 72
            yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\TranslationExtension']->trans("I forgot my password", [], "AdminLTEBundle"), "html", null, true);
            yield "
                    </a>
                    <br>
                ";
        }
        // line 76
        yield "                ";
        if (($this->env->getRuntime('KevinPapst\AdminLTEBundle\Twig\RuntimeExtension')->getRouteByAlias("adminlte_registration") != "adminlte_registration")) {
            // line 77
            yield "                    <a href=\"";
            yield $this->extensions['Symfony\Bridge\Twig\Extension\RoutingExtension']->getPath($this->env->getRuntime('KevinPapst\AdminLTEBundle\Twig\RuntimeExtension')->getRouteByAlias("adminlte_registration"));
            yield "\" class=\"text-center\">
                        ";
            // line 78
            yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\TranslationExtension']->trans("Register a new account", [], "AdminLTEBundle"), "html", null, true);
            yield "
                    </a>
                ";
        }
        // line 81
        yield "            ";
        yield from [];
    }

    // line 86
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_javascripts(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        // line 87
        yield "    <script src=\"";
        yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("adminlte.js"), "html", null, true);
        yield "\"></script>
";
        yield from [];
    }

    /**
     * @codeCoverageIgnore
     */
    public function getTemplateName(): string
    {
        return "@AdminLTE/layout/security-layout.html.twig";
    }

    /**
     * @codeCoverageIgnore
     */
    public function getDebugInfo(): array
    {
        return array (  421 => 87,  414 => 86,  409 => 81,  403 => 78,  398 => 77,  395 => 76,  388 => 72,  383 => 71,  380 => 70,  373 => 69,  364 => 65,  358 => 62,  353 => 60,  350 => 59,  343 => 58,  333 => 55,  323 => 36,  317 => 56,  314 => 55,  309 => 50,  303 => 47,  295 => 42,  286 => 38,  283 => 37,  281 => 36,  277 => 35,  270 => 34,  265 => 31,  259 => 29,  256 => 28,  249 => 27,  239 => 25,  229 => 24,  218 => 19,  211 => 82,  208 => 69,  205 => 58,  203 => 34,  199 => 32,  197 => 27,  194 => 26,  191 => 25,  189 => 24,  183 => 20,  181 => 19,  177 => 17,  170 => 16,  160 => 15,  150 => 14,  142 => 11,  135 => 10,  124 => 9,  116 => 5,  109 => 4,  99 => 1,  91 => 89,  89 => 86,  86 => 85,  84 => 16,  82 => 15,  78 => 14,  75 => 13,  73 => 10,  68 => 9,  66 => 4,  59 => 1,);
    }

    public function getSourceContext(): Source
    {
        return new Source("", "@AdminLTE/layout/security-layout.html.twig", "/var/www/html/templates/bundles/AdminLTEBundle/layout/security-layout.html.twig");
    }
}
