/
var
/
www
/
html
/
restaurants
/
var
/
cache
/
prod
/
twig
/
59
/
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_a25eaeb432b3f52c457f1f19dcd86ea8d706124bf1910ef13262d88d2ec9a7c0 extends Template { private $source; private $macros = []; public function __construct(Environment $env) { parent::__construct($env); $this->source = $this->getSourceContext(); $this->blocks = [ 'stylesheets' => [$this, 'block_stylesheets'], '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 2 public function block_stylesheets($context, array $blocks = []) { $macros = $this->macros; // line 3 echo "\t"; $this->displayParentBlock("stylesheets", $context, $blocks); echo " <style> @media (max-width: 767px) { .confirmation-message { width: 100%; } .card-body h2 { font-size: 20px; } } </style> "; } // line 17 public function block_content($context, array $blocks = []) { $macros = $this->macros; // line 18 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 23 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 ( 81 => 23, 74 => 18, 70 => 17, 51 => 3, 47 => 2, 36 => 1,); } public function getSourceContext() { return new Source("", "Users/confirmation.html.twig", "/var/www/html/restaurants/templates/Users/confirmation.html.twig"); } }