/
home
/
obinna
/
html
/
mixchief_app
/
var
/
cache
/
prod
/
twig
/
04
/
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/registers.html.twig */ class __TwigTemplate_b75d7b844046d4e5660b24c68ed0751fc53cc7b86901400dbe3076ff7046bbeb 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", "user/registers.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=\"register-form\"> <div class=\"card\"> <h3 class=\"text-center\">Register to start using Amply Now</h3> <div class=\"card-body\"> "; // line 8 echo $this->env->getRuntime('Symfony\Component\Form\FormRenderer')->renderBlock(($context["form"] ?? null), 'form_start', ["attr" => ["novalidate" => "novalidate"]]); echo " "; // line 9 echo $this->env->getRuntime('Symfony\Component\Form\FormRenderer')->searchAndRenderBlock(($context["form"] ?? null), 'widget'); echo " <button class=\"btn btn-primary\">Register</button> "; // line 11 echo $this->env->getRuntime('Symfony\Component\Form\FormRenderer')->renderBlock(($context["form"] ?? null), 'form_end'); echo " </div> </div> </div> "; } public function getTemplateName() { return "user/registers.html.twig"; } public function isTraitable() { return false; } public function getDebugInfo() { return array ( 65 => 11, 60 => 9, 56 => 8, 50 => 4, 46 => 3, 35 => 1,); } public function getSourceContext() { return new Source("", "user/registers.html.twig", "/var/www/html/mixchief_app/templates/user/registers.html.twig"); } }