/
home
/
obinna
/
html
/
mixchief_app
/
var
/
cache
/
prod
/
twig
/
e7
/
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/passwordreset.html.twig */ class __TwigTemplate_fd9fb720b070601f0c04783c1b320cda680019e6ab9de4b6b9ff4dd13ee45de7 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 "base2.html.twig"; } protected function doDisplay(array $context, array $blocks = []) { $macros = $this->macros; $this->parent = $this->loadTemplate("base2.html.twig", "Users/passwordreset.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 " <div class=\"login-form\"> <div class=\"card\"> <div class=\"card-header\">Change Password</div> <div class=\"card-body\"> "; // line 8 if (($context["error"] ?? null)) { // line 9 echo " <div id=\"error\">"; echo twig_escape_filter($this->env, ($context["error"] ?? null), "html", null, true); echo "</div> "; } // line 11 echo " <form action=\""; echo $this->extensions['Symfony\Bridge\Twig\Extension\RoutingExtension']->getPath("password_email"); echo "\" method=\"post\" role=\"form\"> <div class=\"form-group\"> <input type=\"email\" name=\"email\" placeholder=\"Email Address\" class=\"form-control\" value=\""; // line 13 echo twig_escape_filter($this->env, ((array_key_exists("email", $context)) ? (_twig_default_filter(($context["email"] ?? null), "")) : ("")), "html", null, true); echo "\"> </div> <input type=\"submit\" name=\"submit\" value=\"Reset Password\" class=\"btn btn-other\"> </form> </div> </div> </div> "; } public function getTemplateName() { return "Users/passwordreset.html.twig"; } public function isTraitable() { return false; } public function getDebugInfo() { return array ( 70 => 13, 64 => 11, 58 => 9, 56 => 8, 50 => 4, 46 => 3, 35 => 1,); } public function getSourceContext() { return new Source("", "Users/passwordreset.html.twig", "/var/www/html/mixchief_app/templates/Users/passwordreset.html.twig"); } }