<?php

use Twig\Environment;
use Twig\Error\LoaderError;
use Twig\Error\RuntimeError;
use Twig\Extension\CoreExtension;
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;
use Twig\TemplateWrapper;

/* user/register.html.twig */
class __TwigTemplate_f30a3665229777d4d42395023d357faf extends Template
{
    private Source $source;
    /**
     * @var array<string, Template>
     */
    private array $macros = [];

    public function __construct(Environment $env)
    {
        parent::__construct($env);

        $this->source = $this->getSourceContext();

        $this->blocks = [
            'page_content' => [$this, 'block_page_content'],
        ];
    }

    protected function doGetParent(array $context): bool|string|Template|TemplateWrapper
    {
        // line 1
        return "profile.html.twig";
    }

    protected function doDisplay(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        $this->parent = $this->load("profile.html.twig", 1);
        yield from $this->parent->unwrap()->yield($context, array_merge($this->blocks, $blocks));
    }

    // line 3
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_page_content(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        // line 4
        yield "    <div class=\"register-box\">
        <div class=\"register-logo\">
                <a href=\"";
        // line 6
        yield $this->extensions['Symfony\Bridge\Twig\Extension\RoutingExtension']->getPath("homepage");
        yield "\"><b>MeS</b>ODD</a>
        </div>
      
        <div class=\"card\">
            <div class=\"card-body register-card-body\">
                <p class=\"login-box-msg\">Register a new membership</p>
      
                ";
        // line 13
        yield         $this->env->getRuntime('Symfony\Component\Form\FormRenderer')->renderBlock(($context["form"] ?? null), 'form_start');
        yield "
                    <div class=\"input-group mb-3\">
                        ";
        // line 15
        yield $this->env->getRuntime('Symfony\Component\Form\FormRenderer')->searchAndRenderBlock(CoreExtension::getAttribute($this->env, $this->source, ($context["form"] ?? null), "username", [], "any", false, false, false, 15), 'widget');
        yield "
                        <!--input type=\"text\" class=\"form-control\" placeholder=\"Full name\"-->
                        <div class=\"input-group-append input-group-text\">
                            <span class=\"fas fa-user\"></span>
                        </div>
                    </div>
                    <div class=\"input-group mb-3\">
                        ";
        // line 22
        yield $this->env->getRuntime('Symfony\Component\Form\FormRenderer')->searchAndRenderBlock(CoreExtension::getAttribute($this->env, $this->source, ($context["form"] ?? null), "email", [], "any", false, false, false, 22), 'widget');
        yield "
                        <!--input type=\"email\" class=\"form-control\" placeholder=\"Email\"-->
                        <div class=\"input-group-append input-group-text\">
                            <span class=\"fas fa-envelope\"></span>
                        </div>
                    </div>
                    <div class=\"input-group mb-3\">
                        ";
        // line 29
        yield $this->env->getRuntime('Symfony\Component\Form\FormRenderer')->searchAndRenderBlock(CoreExtension::getAttribute($this->env, $this->source, CoreExtension::getAttribute($this->env, $this->source, ($context["form"] ?? null), "plainPassword", [], "any", false, false, false, 29), "first", [], "any", false, false, false, 29), 'widget');
        yield "
                        <!--input type=\"password\" class=\"form-control\" placeholder=\"Password\"-->
                        <div class=\"input-group-append input-group-text\">
                            <span class=\"fas fa-lock\"></span>
                        </div>
                    </div>
                    <div class=\"input-group mb-3\">
                        ";
        // line 36
        yield $this->env->getRuntime('Symfony\Component\Form\FormRenderer')->searchAndRenderBlock(CoreExtension::getAttribute($this->env, $this->source, CoreExtension::getAttribute($this->env, $this->source, ($context["form"] ?? null), "plainPassword", [], "any", false, false, false, 36), "second", [], "any", false, false, false, 36), 'widget');
        yield "
                        <!--input type=\"password\" class=\"form-control\" placeholder=\"Retype password\"-->
                        <div class=\"input-group-append input-group-text\">
                            <span class=\"fas fa-lock\"></span>
                        </div>
                    </div>
                    <div class=\"input-group mb-3\">
                        ";
        // line 43
        yield $this->env->getRuntime('Symfony\Component\Form\FormRenderer')->searchAndRenderBlock(CoreExtension::getAttribute($this->env, $this->source, ($context["form"] ?? null), "givenName", [], "any", false, false, false, 43), 'widget');
        yield "
                        <div class=\"input-group-append input-group-text\">
                            <span class=\"fas fa-user\"></span>
                        </div>
                    </div>
                    <div class=\"input-group mb-3\">
                        ";
        // line 49
        yield $this->env->getRuntime('Symfony\Component\Form\FormRenderer')->searchAndRenderBlock(CoreExtension::getAttribute($this->env, $this->source, ($context["form"] ?? null), "familyName", [], "any", false, false, false, 49), 'widget');
        yield "
                        <div class=\"input-group-append input-group-text\">
                            <span class=\"fas fa-user\"></span>
                        </div>
                    </div>
                    <div class=\"input-group mb-3\">
                        ";
        // line 55
        yield $this->env->getRuntime('Symfony\Component\Form\FormRenderer')->searchAndRenderBlock(CoreExtension::getAttribute($this->env, $this->source, ($context["form"] ?? null), "telephone", [], "any", false, false, false, 55), 'widget');
        yield "
                        <div class=\"input-group-append input-group-text\">
                            <span class=\"fas fa-phone\"></span>
                        </div>
                    </div>
        
                    <div class=\"row\">
                        <div class=\"col-8\">
                            <div class=\"icheck-primary\">
                                <input type=\"checkbox\" id=\"agreeTerms\" name=\"terms\" value=\"agree\">
                                <label for=\"agreeTerms\">
                                I agree to the <a href=\"#\">terms</a>
                                </label>
                            </div>
                        </div>

                        <div class=\"col-4\">
                            <button type=\"submit\" class=\"btn btn-primary btn-block btn-flat\">Register</button>
                        </div>

                    </div>
                ";
        // line 76
        yield         $this->env->getRuntime('Symfony\Component\Form\FormRenderer')->renderBlock(($context["form"] ?? null), 'form_end');
        yield "
      
                <!--div class=\"social-auth-links text-center\">
                <p>- OR -</p>
                <a href=\"#\" class=\"btn btn-block btn-primary\">
                    <i class=\"fab fa-facebook mr-2\"></i>
                    Sign up using Facebook
                </a>
                <a href=\"#\" class=\"btn btn-block btn-danger\">
                    <i class=\"fab fa-google-plus mr-2\"></i>
                    Sign up using Google+
                </a>
                </div-->
      
                <a href=\"";
        // line 90
        yield $this->extensions['Symfony\Bridge\Twig\Extension\RoutingExtension']->getPath("app_login");
        yield "\" class=\"text-center\">";
        yield $this->env->getExtension('Symfony\Bridge\Twig\Extension\TranslationExtension')->trans("authentication.already_registered", [], "messages");
        yield "</a> 
            </div>

        </div>
    </div>
";
        yield from [];
    }

    /**
     * @codeCoverageIgnore
     */
    public function getTemplateName(): string
    {
        return "user/register.html.twig";
    }

    /**
     * @codeCoverageIgnore
     */
    public function isTraitable(): bool
    {
        return false;
    }

    /**
     * @codeCoverageIgnore
     */
    public function getDebugInfo(): array
    {
        return array (  176 => 90,  159 => 76,  135 => 55,  126 => 49,  117 => 43,  107 => 36,  97 => 29,  87 => 22,  77 => 15,  72 => 13,  62 => 6,  58 => 4,  51 => 3,  40 => 1,);
    }

    public function getSourceContext(): Source
    {
        return new Source("", "user/register.html.twig", "/var/www/html/templates/user/register.html.twig");
    }
}
