/
var
/
www
/
html
/
amply
/
var
/
cache
/
prod
/
twig
/
fb
/
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; /* user/updatepassword.html.twig */ class __TwigTemplate_c40519fd00eab9fb2c4da414899f67cb0b23bba308d99e44e490a58e15dd4b8e extends Template { private $source; private $macros = []; public function __construct(Environment $env) { parent::__construct($env); $this->source = $this->getSourceContext(); $this->blocks = [ '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", "user/updatepassword.html.twig", 1); $this->parent->display($context, array_merge($this->blocks, $blocks)); } // line 3 public function block_content($context, array $blocks = []) { $macros = $this->macros; // line 4 echo "\t<div class=\"content\"> \t\t<div class=\"row\"> \t\t\t<div class=\"col-sm-8\"> \t\t\t\t<div class=\"card\"> \t\t\t\t\t<div class=\"card-body\"> \t\t\t\t\t\t<form action=\"/profile\" method=\"POST\"> \t\t\t\t\t\t\t<div class=\"form-group\"> \t\t\t\t\t\t\t\t<label for=\"current\">Current Password</label> \t\t\t\t\t\t\t\t<input type=\"password\" class=\"form-control\" id=\"current\" name=\"current\"> \t\t\t\t\t\t\t</div> \t\t\t\t\t\t\t<div class=\"form-group\"> \t\t\t\t\t\t\t\t<label for=\"password\">New Password</label> \t\t\t\t\t\t\t\t<input type=\"password\" class=\"form-control\" id=\"password\" name=\"password\"> \t\t\t\t\t\t\t</div> \t\t\t\t\t\t\t<div class=\"form-group\"> \t\t\t\t\t\t\t\t<label for=\"confirm\">Confirm Password</label> \t\t\t\t\t\t\t\t<input type=\"password\" class=\"form-control\" id=\"confirm\" name=\"passwordconfirm\"> \t\t\t\t\t\t\t</div> \t\t\t\t\t\t</form> \t\t\t\t\t</div> \t\t\t\t</div> \t\t\t</div> \t\t</div> \t</div> "; } public function getTemplateName() { return "user/updatepassword.html.twig"; } public function isTraitable() { return false; } public function getDebugInfo() { return array ( 50 => 4, 46 => 3, 35 => 1,); } public function getSourceContext() { return new Source("", "user/updatepassword.html.twig", "/var/www/html/amply/templates/user/updatepassword.html.twig"); } }