<?php

/* unauthorized.tpl */
class __TwigTemplate_aac11978a84a2926753b1d831bf520c8bd6b7aa1f918de4bca0a63491af09e31 extends Twig_Template
{
    public function __construct(Twig_Environment $env)
    {
        parent::__construct($env);

        // line 1
        $this->parent = $this->loadTemplate("base.tpl", "unauthorized.tpl", 1);
        $this->blocks = array(
            'page_title' => array($this, 'block_page_title'),
            'content' => array($this, 'block_content'),
        );
    }

    protected function doGetParent(array $context)
    {
        return "base.tpl";
    }

    protected function doDisplay(array $context, array $blocks = array())
    {
        $this->parent->display($context, array_merge($this->blocks, $blocks));
    }

    // line 3
    public function block_page_title($context, array $blocks = array())
    {
        echo "Доступ ограничен — ";
        echo twig_escape_filter($this->env, (isset($context["site_name"]) ? $context["site_name"] : null), "html", null, true);
    }

    // line 5
    public function block_content($context, array $blocks = array())
    {
        // line 6
        echo "  <div class=\"page-header\">
    <h1>Доступ ограничен</h1>
  </div>

  <p>Эта страница доступна только хозяевам сайта.  Пожалуйста, назовите себя.</p>

  <form method=\"post\" action=\"/login\" class=\"login async\">
    <div class=\"form-group\">
      <label>Имя:</label>
      <input type=\"text\" name=\"login\" required=\"required\" class=\"form-control\"/>
    </div>

    <div class=\"form-group\">
      <label>Пароль:</label>
      <input type=\"password\" name=\"password\" required=\"required\" class=\"form-control\"/>
    </div>

    <div class=\"form-group\">
      <button class=\"btn btn-primary\">Войти</button>
    </div>
  </form>
";
    }

    public function getTemplateName()
    {
        return "unauthorized.tpl";
    }

    public function isTraitable()
    {
        return false;
    }

    public function getDebugInfo()
    {
        return array (  39 => 6,  36 => 5,  29 => 3,  11 => 1,);
    }
}
/* {% extends "base.tpl" %}*/
/* */
/* {% block page_title %}Доступ ограничен — {{ site_name }}{% endblock %}*/
/* */
/* {% block content %}*/
/*   <div class="page-header">*/
/*     <h1>Доступ ограничен</h1>*/
/*   </div>*/
/* */
/*   <p>Эта страница доступна только хозяевам сайта.  Пожалуйста, назовите себя.</p>*/
/* */
/*   <form method="post" action="/login" class="login async">*/
/*     <div class="form-group">*/
/*       <label>Имя:</label>*/
/*       <input type="text" name="login" required="required" class="form-control"/>*/
/*     </div>*/
/* */
/*     <div class="form-group">*/
/*       <label>Пароль:</label>*/
/*       <input type="password" name="password" required="required" class="form-control"/>*/
/*     </div>*/
/* */
/*     <div class="form-group">*/
/*       <button class="btn btn-primary">Войти</button>*/
/*     </div>*/
/*   </form>*/
/* {% endblock %}*/
/* */
