/
var
/
www
/
html
/
boazapp
/
var
/
cache
/
prod
/
twig
/
f2
/
Upload File
HOME
<?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; /* users/change.html.twig */ class __TwigTemplate_28890e7c7f2f345661a4918f240a52c53b27f0e43fc50be1b909e0c6af902904 extends Template { private $source; private $macros = []; public function __construct(Environment $env) { parent::__construct($env); $this->source = $this->getSourceContext(); $this->blocks = [ 'sidemenu' => [$this, 'block_sidemenu'], 'content' => [$this, 'block_content'], ]; } protected function doGetParent(array $context) { // line 1 return "base1.html.twig"; } protected function doDisplay(array $context, array $blocks = []) { $macros = $this->macros; $this->parent = $this->loadTemplate("base1.html.twig", "users/change.html.twig", 1); yield from $this->parent->unwrap()->yield($context, array_merge($this->blocks, $blocks)); } // line 3 public function block_sidemenu($context, array $blocks = []) { $macros = $this->macros; // line 4 yield " <li class=\"active\" id=\"home\"> <a href=\""; // line 5 yield $this->extensions['Symfony\Bridge\Twig\Extension\RoutingExtension']->getPath("home"); yield "\"> <p>Home</p> </a> </li> "; return; yield ''; } // line 13 public function block_content($context, array $blocks = []) { $macros = $this->macros; // line 14 yield " <div class=\"content\"> <div class=\"container-fluid\"> <div class=\"row\"> <div class=\"col-md-6 col-md-offset-2\"> <div class=\"card\"> <div class=\"header\"> <h4 class=\"title\">Login</h4> </div> <div class=\"content\"> <form action=\""; // line 23 yield $this->extensions['Symfony\Bridge\Twig\Extension\RoutingExtension']->getPath("change"); yield "\" method=\"post\" onsubmit=\"return sub(this);\"> <div class=\"forms\"> <div class=\"form-group\"> <label for=\"initial\"><h4>New Password:</h4></label> <input class=\"form-control\" type=\"password\" id=\"initial\" name=\"initial\" /> </div> <div class=\"form-group\"> <label for=\"con\"><h4>Confirm Password:</h4></label> <input class=\"form-control\" type=\"password\" id=\"con\" name=\"password\" /> </div> <button type=\"submit\" name=\"submit\" class=\"btn btn-default\">Save</button> </div> </form> </div> </div> </div> </div> </div> </div> "; return; yield ''; } /** * @codeCoverageIgnore */ public function getTemplateName() { return "users/change.html.twig"; } /** * @codeCoverageIgnore */ public function isTraitable() { return false; } /** * @codeCoverageIgnore */ public function getDebugInfo() { return array ( 80 => 23, 69 => 14, 65 => 13, 55 => 5, 52 => 4, 48 => 3, 37 => 1,); } public function getSourceContext() { return new Source("", "users/change.html.twig", "/var/www/html/boazapp/templates/users/change.html.twig"); } }