/
var
/
www
/
html
/
amply
/
var
/
cache
/
prod
/
twig
/
27
/
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/confirmation.html.twig */ class __TwigTemplate_ed452af4529447ca53a79fbdcd004b5a349eb2aca755552fc29f448d18ae3928 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/confirmation.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>A verification email has been sent to <span>"; // line 9 echo twig_escape_filter($this->env, ($context["email"] ?? null), "html", null, true); echo "</span>. Click on the link to verify your email.</h2> </div> </div> </div> </div> "; } public function getTemplateName() { return "Users/confirmation.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/confirmation.html.twig", "/var/www/html/amply/templates/Users/confirmation.html.twig"); } }