You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
103 lines
3.1 KiB
103 lines
3.1 KiB
<?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;
|
|
|
|
/* login.html */
|
|
class __TwigTemplate_2cd0c955593f8f6da78deaca6452905d 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->parent = false;
|
|
|
|
$this->blocks = [
|
|
];
|
|
}
|
|
|
|
protected function doDisplay(array $context, array $blocks = []): iterable
|
|
{
|
|
$macros = $this->macros;
|
|
// line 1
|
|
yield " <div class=\"container\">
|
|
<div class=\"header\">
|
|
<div class=\"nav\">
|
|
<img src=\"../images/coeur.svg\" alt=\"coeur\" width=\"67px\" height=\"67px\" onmousedown=\"return false\">
|
|
<img id=\"theme-icon\" src=\"../images/light.svg\" alt=\"toggle theme\" width=\"72px\" height=\"37px\" onmousedown=\"return false\" onclick=\"toggleTheme()\">
|
|
<img src=\"../images/quizz.svg\" alt=\"quizz\" width=\"51px\" height=\"82px\" onmousedown=\"return false\">
|
|
</div>
|
|
<div class=\"logo\">
|
|
<a href=\"accueil.html\"><img src=\"../images/WIKIFANTASY.png\" alt=\"Logo\" width=\"227px\" height=\"106px\" onmousedown=\"return false\"></a>
|
|
</div>
|
|
<div class=\"user\">
|
|
<img src=\"../images/user_dark.png\" alt=\"user\" width=\"70px\" height=\"70px\" onmousedown=\"return false\">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<h1>▶ Connexion ◀</h1>
|
|
|
|
<div class=\"login\">
|
|
<p> <strong>Identifiant *</strong></p>
|
|
<input type=\"text\" class=\"connexion\" name=\"name\" required />
|
|
|
|
<p> <strong> Mot de passe *</strong></p>
|
|
<input type=\"password\" class=\"connexion\" name=\"passwd\" required />
|
|
|
|
<div class=\"createAccount\">
|
|
<p class=\"createAccount\">Vous n'avez pas de compte?</p>
|
|
<a href=\"/signin\" class=\"createAccount\">S'incrire</a>
|
|
</div>
|
|
|
|
|
|
<div class=\"buttonSudmiteDiv\">
|
|
<button class=\"buttonSudmite\">Connexion</button>
|
|
</div>
|
|
|
|
</div>
|
|
</body>
|
|
</html>";
|
|
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");
|
|
}
|
|
}
|