/
home
/
obinna
/
html
/
mixchief_app
/
var
/
cache
/
prod
/
twig
/
46
/
Upload File
HOME
<?php use Twig\Environment; use Twig\Error\LoaderError; use Twig\Error\RuntimeError; 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; /* ajax/login.html.twig */ class __TwigTemplate_8d8918b84697ff27863ad3c1b45f88d1ab3ca67c7abf48e6c77535e2124c85de extends Template { private $source; private $macros = []; public function __construct(Environment $env) { parent::__construct($env); $this->source = $this->getSourceContext(); $this->blocks = [ 'styles' => [$this, 'block_styles'], 'content' => [$this, 'block_content'], ]; } protected function doGetParent(array $context) { // line 1 return "empty.html.twig"; } protected function doDisplay(array $context, array $blocks = []) { $macros = $this->macros; $this->parent = $this->loadTemplate("empty.html.twig", "ajax/login.html.twig", 1); $this->parent->display($context, array_merge($this->blocks, $blocks)); } // line 3 public function block_styles($context, array $blocks = []) { $macros = $this->macros; // line 4 echo "\t"; $this->displayParentBlock("styles", $context, $blocks); echo " \t<style> \t\t.logo { \t\t\twidth: 150px; \t\t} \t\t \t\t.form-signin input[type=\"email\"] { \t\t margin-bottom: -1px; \t\t border-bottom-right-radius: 0; \t\t border-bottom-left-radius: 0; \t\t} \t\t.form-signin input[type=\"password\"] { \t\t margin-bottom: 10px; \t\t border-top-left-radius: 0; \t\t border-top-right-radius: 0; \t\t} \t\t.form-control:focus { \t\t color: #495057; \t\t background-color: #fff; \t\t border-color: #495057; \t\t outline: 0; \t\t box-shadow: none; \t\t} \t\t.form-control { \t\t} \t</style> "; } // line 36 public function block_content($context, array $blocks = []) { $macros = $this->macros; // line 37 echo "\t<form class=\"form-signin\" action=\""; echo $this->extensions['Symfony\Bridge\Twig\Extension\RoutingExtension']->getPath("app_login"); echo "\" method=\"POST\"> \t\t<input type=\"hidden\" name=\"_csrf_token\" value=\""; // line 38 echo twig_escape_filter($this->env, $this->env->getRuntime('Symfony\Component\Form\FormRenderer')->renderCsrfToken("authenticate"), "html", null, true); echo "\"> \t"; // line 40 echo " \t<h1 class=\"h3 mb-3 font-weight-normal\">Please sign in</h1> \t<label for=\"inputEmail\" class=\"sr-only\">Email address</label> \t<input type=\"email\" name=\"email\" placeholder=\"Email Address\" class=\"form-control login\" value=\""; // line 42 echo twig_escape_filter($this->env, ((array_key_exists("last_username", $context)) ? (_twig_default_filter(($context["last_username"] ?? null), "")) : ("")), "html", null, true); echo "\" required> \t<label for=\"inputPassword\" class=\"sr-only\">Password</label> \t<input type=\"password\" name=\"password\" placeholder=\"Password\" class=\"form-control\" required> \t<div class=\"checkbox mb-3\"> \t <label> \t \t<input type=\"checkbox\" name=\"_remember_me\"> Remember me \t </label> \t</div> \t<button class=\"btn btn-lg btn-primary btn-block\" type=\"submit\">Sign in</button> \t"; // line 52 echo " </form> "; } public function getTemplateName() { return "ajax/login.html.twig"; } public function isTraitable() { return false; } public function getDebugInfo() { return array ( 116 => 52, 104 => 42, 100 => 40, 96 => 38, 91 => 37, 87 => 36, 51 => 4, 47 => 3, 36 => 1,); } public function getSourceContext() { return new Source("", "ajax/login.html.twig", "/var/www/html/mixchief_app/templates/ajax/login.html.twig"); } }