*/ private array $macros = []; public function __construct(Environment $env) { parent::__construct($env); $this->source = $this->getSourceContext(); $this->parent = false; $this->blocks = [ ]; } protected function doDisplay(array $context, array $blocks = []): iterable { $macros = $this->macros; // line 1 yield "
\"coeur\" \"toggle \"quizz\"
\"Logo\"
\"user\"

▶ Connexion ◀

Identifiant *

Mot de passe *

Vous n'avez pas de compte?

S'incrire
"; yield from []; } /** * @codeCoverageIgnore */ public function getTemplateName(): string { return "login.html"; } /** * @codeCoverageIgnore */ public function getDebugInfo(): array { return array ( 42 => 1,); } public function getSourceContext(): Source { return new Source("", "login.html", "/home/www/lebeaulato/public_html/WF-Website/vue/templates/login.html"); } }