/
home
/
obinna
/
html
/
mixchief_app
/
var
/
cache
/
prod
/
twig
/
b4
/
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/emailsent.html.twig */ class __TwigTemplate_fb6de2f13b78398a8312d553ff446d4458c4dac32ee91db3b0e2d6c84b8f2c7e 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/emailsent.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=\"confirmation-message\"> <div class=\"card\"> <div class=\"card-header\"> <div class=\"card-body\"> <h2>An email has been sent to <span>"; // line 9 echo twig_escape_filter($this->env, ($context["email"] ?? null), "html", null, true); echo "</span> containing a link to reset your password.</h2> </div> </div> </div> </div> "; } public function getTemplateName() { return "Users/emailsent.html.twig"; } public function isTraitable() { return false; } public function getDebugInfo() { return array ( 57 => 9, 50 => 4, 46 => 3, 35 => 1,); } public function getSourceContext() { return new Source("", "Users/emailsent.html.twig", "/var/www/html/mixchief_app/templates/Users/emailsent.html.twig"); } }