/
var
/
www
/
html
/
boaz2
/
var
/
cache
/
prod
/
twig
/
9a
/
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; /* users/change.html.twig */ class __TwigTemplate_de705f5793d3d0475866e33d0e998eb79f6025a0428ff53312f8f793248755ac 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); $this->parent->display($context, array_merge($this->blocks, $blocks)); } // line 3 public function block_sidemenu($context, array $blocks = []) { $macros = $this->macros; // line 4 echo " <li class=\"active\" id=\"home\"> <a href=\""; // line 5 echo $this->extensions['Symfony\Bridge\Twig\Extension\RoutingExtension']->getPath("home"); echo "\"> <p>Home</p> </a> </li> "; } // line 13 public function block_content($context, array $blocks = []) { $macros = $this->macros; // line 14 echo " <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 echo $this->extensions['Symfony\Bridge\Twig\Extension\RoutingExtension']->getPath("change"); echo "\" 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> "; } public function getTemplateName() { return "users/change.html.twig"; } public function isTraitable() { return false; } public function getDebugInfo() { return array ( 78 => 23, 67 => 14, 63 => 13, 54 => 5, 51 => 4, 47 => 3, 36 => 1,); } public function getSourceContext() { return new Source("", "users/change.html.twig", "/var/www/html/boaz2/templates/users/change.html.twig"); } }