<?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;

/* security/email.html.twig */
class __TwigTemplate_7eb63c138a4cf9e59300da844b7320e3 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 = [
            'content' => [$this, 'block_content'],
        ];
    }

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

    protected function doDisplay(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        $this->parent = $this->load("frontend/layout.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_content(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        // line 4
        yield "\t<div class=\"container\">
\t\t<div class=\"page-header\">
\t\t\t<h1 class=\"page-title\">Réinitialisation du mot de passe</h1>
\t\t</div>
\t\t<div style=\"margin: 0 -15px 40px -15px\"></div>
\t\t<form method=\"post\" role=\"form\" class=\"php-login-form\" actions=\"\">
            <input type=\"hidden\" name=\"_csrf_token\" value=\"";
        // line 10
        yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->env->getRuntime('Symfony\Component\Form\FormRenderer')->renderCsrfToken("authenticate"), "html", null, true);
        yield "\">
            <div class=\"members-form\" style=\"max-width: 100% !important;\">
\t\t\t\t<div class=\"mb-4\">
\t\t\t\t\t<label for=\"email\" class=\"form-label\">Entrez votre email</label>
\t\t\t\t\t<input type=\"email\" class=\"form-control\" name=\"email\" required />
\t\t\t\t</div>
                <div class=\"mb-3 text-center\">
\t\t\t\t\t<button type=\"submit\" class=\"btn btn-primary px-5 py-2\" value=\"valider\" name=\"valider\">Valider</button>
\t\t\t\t</div>
\t\t\t</div>
\t\t</form>
\t</div>
";
        yield from [];
    }

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

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

    /**
     * @codeCoverageIgnore
     */
    public function getDebugInfo(): array
    {
        return array (  66 => 10,  58 => 4,  51 => 3,  40 => 1,);
    }

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