parent
d7a097ae89
commit
6a866d7615
@ -1,95 +0,0 @@
|
|||||||
<?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;
|
|
||||||
|
|
||||||
/* endQuiz.html.twig */
|
|
||||||
class __TwigTemplate_c06a302c21f2b7c0cffcc93742935dad 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 "<!DOCTYPE html>
|
|
||||||
<html lang=\"fr\">
|
|
||||||
<head>
|
|
||||||
<meta charset=\"UTF-8\">
|
|
||||||
<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">
|
|
||||||
<title>Wiki Fantasy : Quiz</title>
|
|
||||||
<link id=\"favicon\" rel=\"icon\" href=\"../../images/iconeSombre.ico\"> <!-- Par défaut sombre -->
|
|
||||||
<link rel=\"stylesheet\" href=\"../../public/styles/styleQuiz.css\">
|
|
||||||
<script defer src=\"../../public/script/theme-toggle.js\"></script>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
|
|
||||||
<h2> ";
|
|
||||||
// line 14
|
|
||||||
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["score"] ?? null), "html", null, true);
|
|
||||||
yield " </h2>
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
";
|
|
||||||
yield from [];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @codeCoverageIgnore
|
|
||||||
*/
|
|
||||||
public function getTemplateName(): string
|
|
||||||
{
|
|
||||||
return "endQuiz.html.twig";
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @codeCoverageIgnore
|
|
||||||
*/
|
|
||||||
public function isTraitable(): bool
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @codeCoverageIgnore
|
|
||||||
*/
|
|
||||||
public function getDebugInfo(): array
|
|
||||||
{
|
|
||||||
return array ( 57 => 14, 42 => 1,);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getSourceContext(): Source
|
|
||||||
{
|
|
||||||
return new Source("", "endQuiz.html.twig", "/Users/kiem/Documents/WikiFantasy/WF-Website/vue/templates/endQuiz.html.twig");
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,127 +0,0 @@
|
|||||||
<?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;
|
|
||||||
|
|
||||||
/* signin2.html.twig */
|
|
||||||
class __TwigTemplate_487259351c054531e82d7ec374d515ee 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 "<!DOCTYPE html>
|
|
||||||
<html lang=\"fr\">
|
|
||||||
<head>
|
|
||||||
<meta charset=\"UTF-8\">
|
|
||||||
<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">
|
|
||||||
<link rel=\"stylesheet\" type=\"text/css\" href=\"../public/styles/styleSignin.css\" media=\"screen\">
|
|
||||||
<title>Wiki Fantasy : Inscription</title>
|
|
||||||
<link id=\"favicon\" rel=\"icon\" href=\"../images/iconeSombre.ico\"> <!-- Par défaut sombre -->
|
|
||||||
<link href=\"https://fonts.googleapis.com/css2?family=Lemon&display=swap\" rel=\"stylesheet\">
|
|
||||||
<script defer src=\"../public/script/theme-toggle.js\"></script>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div class=\"container\">
|
|
||||||
<div class=\"header\">
|
|
||||||
<div class=\"nav\">
|
|
||||||
<a href=\"favorite.html\"><img src=\"../images/coeur.svg\" alt=\"coeur\" width=\"67px\" height=\"67px\" onmousedown=\"return false\"></a>
|
|
||||||
<img id=\"theme-icon\" src=\"../images/light.svg\" alt=\"toggle theme\" width=\"72px\" height=\"37px\" onmousedown=\"return false\" onclick=\"toggleTheme()\">
|
|
||||||
<a href=\"quiz.html\"><img src=\"../images/quizz.svg\" alt=\"quizz\" width=\"51px\" height=\"82px\" onmousedown=\"return false\"></a>
|
|
||||||
</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>▶ S'inscrazeazeazeire ◀</h1>
|
|
||||||
<form method=\"post\">
|
|
||||||
<div class=\"signin\">
|
|
||||||
<div class=\"DivId\">
|
|
||||||
<p>Identifiant *</p>
|
|
||||||
<input type=\"text\" class=\"champ\" id=\"pseudo\" name=\"pseudo\" placeholder=\"Id\" required/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class=\"DivEmail\">
|
|
||||||
<p>Email *</p>
|
|
||||||
<input type=\"email\" class=\"champ\" id=\"email\" name=\"email\" required/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class=\"mdp\">
|
|
||||||
<p>Mot de passe *</p>
|
|
||||||
<input type=\"password\" class=\"champ\" id=\"mdp\" name=\"mdp\" required placeholder=\"Entrez votre mot de passe\"/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class=\"confmdp\">
|
|
||||||
<p>Confirmer mot de passe *</p>
|
|
||||||
<input type=\"password\" class=\"champ\" id=\"cmdp\" name=\"cmdp\" placeholder=\"Confirmez votre mot de passe\" required/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class=\"imgprof\">
|
|
||||||
<p>Image *</p>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class=\"confirmer\">
|
|
||||||
<input type=\"submit\" class=\"btn\" value=\"Inscription\" />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
</body>
|
|
||||||
</html>";
|
|
||||||
yield from [];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @codeCoverageIgnore
|
|
||||||
*/
|
|
||||||
public function getTemplateName(): string
|
|
||||||
{
|
|
||||||
return "signin2.html.twig";
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @codeCoverageIgnore
|
|
||||||
*/
|
|
||||||
public function getDebugInfo(): array
|
|
||||||
{
|
|
||||||
return array ( 42 => 1,);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getSourceContext(): Source
|
|
||||||
{
|
|
||||||
return new Source("", "signin.html.twig", "/Users/kiem/Documents/WikiFantasy/WF-Website/vue/templates/signin2.html.twig");
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,167 +0,0 @@
|
|||||||
<?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;
|
|
||||||
|
|
||||||
/* quiz.html.twig */
|
|
||||||
class __TwigTemplate_eb15b3c7b3e1c48f1a2ebec5d9eb6685 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 "<!DOCTYPE html>
|
|
||||||
<html lang=\"fr\">
|
|
||||||
<head>
|
|
||||||
<meta charset=\"UTF-8\">
|
|
||||||
<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">
|
|
||||||
<title>Wiki Fantasy : Quiz</title>
|
|
||||||
<link id=\"favicon\" rel=\"icon\" href=\"../../images/iconeSombre.ico\"> <!-- Par défaut sombre -->
|
|
||||||
<link rel=\"stylesheet\" href=\"../../public/styles/styleQuiz.css\">
|
|
||||||
<script defer src=\"../../public/script/theme-toggle.js\"></script>
|
|
||||||
<script>
|
|
||||||
// Timer pour 5 minutes
|
|
||||||
var timeLeft = 300;
|
|
||||||
function countdown() {
|
|
||||||
var timerDisplay = document.getElementById(\"timer\");
|
|
||||||
if (timeLeft <= 0) {
|
|
||||||
document.getElementById(\"quizForm\").submit();
|
|
||||||
} else {
|
|
||||||
timerDisplay.innerHTML = timeLeft + \" seconds left\";
|
|
||||||
timeLeft -= 1;
|
|
||||||
setTimeout(countdown, 1000);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
window.onload = countdown;
|
|
||||||
</script>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div class=\"header\">
|
|
||||||
<div class=\"nav\">
|
|
||||||
<a href=\"../favorite.html\"><img src=\"../../images/coeur.svg\" alt=\"coeur\" width=\"67px\" height=\"67px\" onmousedown=\"return false\"></a>
|
|
||||||
<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\">
|
|
||||||
<img src=\"../../images/WIKIFANTASY.png\" alt=\"Logo\" width=\"227px\" height=\"106px\" onmousedown=\"return false\">
|
|
||||||
</div>
|
|
||||||
<div class=\"user\">
|
|
||||||
<img src=\"../../images/user_dark.png\" alt=\"user\" width=\"70px\" height=\"70px\" onmousedown=\"return false\">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<h1>▶ Quiz ◀</h1>
|
|
||||||
<div class=\"quiz\">
|
|
||||||
<h2> ";
|
|
||||||
// line 44
|
|
||||||
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(CoreExtension::getAttribute($this->env, $this->source, ($context["question"] ?? null), "question", [], "any", false, false, false, 44), "html", null, true);
|
|
||||||
yield " </h2>
|
|
||||||
<a id=\"timer\"> 300 seconds left .. </a>
|
|
||||||
|
|
||||||
<form id=\"quizForm\" method=\"POST\">
|
|
||||||
<div class=\"answers\">
|
|
||||||
<button class=\"answer\" name=\"answera\" value=\"A-";
|
|
||||||
// line 49
|
|
||||||
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["id"] ?? null), "html", null, true);
|
|
||||||
yield "\">
|
|
||||||
";
|
|
||||||
// line 50
|
|
||||||
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(CoreExtension::getAttribute($this->env, $this->source, ($context["question"] ?? null), "answera", [], "any", false, false, false, 50), "html", null, true);
|
|
||||||
yield "
|
|
||||||
</button>
|
|
||||||
<button class=\"answer\" name=\"answerb\" value=\"B-";
|
|
||||||
// line 52
|
|
||||||
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["id"] ?? null), "html", null, true);
|
|
||||||
yield "\">
|
|
||||||
";
|
|
||||||
// line 53
|
|
||||||
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(CoreExtension::getAttribute($this->env, $this->source, ($context["question"] ?? null), "answerb", [], "any", false, false, false, 53), "html", null, true);
|
|
||||||
yield "
|
|
||||||
</button>
|
|
||||||
<button class=\"answer\" name=\"answerc\" value=\"C-";
|
|
||||||
// line 55
|
|
||||||
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["id"] ?? null), "html", null, true);
|
|
||||||
yield "\">
|
|
||||||
";
|
|
||||||
// line 56
|
|
||||||
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(CoreExtension::getAttribute($this->env, $this->source, ($context["question"] ?? null), "answerc", [], "any", false, false, false, 56), "html", null, true);
|
|
||||||
yield "
|
|
||||||
</button>
|
|
||||||
<button class=\"answer\" name=\"answerd\" value=\"D-";
|
|
||||||
// line 58
|
|
||||||
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["id"] ?? null), "html", null, true);
|
|
||||||
yield "\">
|
|
||||||
";
|
|
||||||
// line 59
|
|
||||||
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(CoreExtension::getAttribute($this->env, $this->source, ($context["question"] ?? null), "answerd", [], "any", false, false, false, 59), "html", null, true);
|
|
||||||
yield "
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
<input type=\"hidden\" name=\"action\" value=\"canswer\">
|
|
||||||
</form>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
";
|
|
||||||
yield from [];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @codeCoverageIgnore
|
|
||||||
*/
|
|
||||||
public function getTemplateName(): string
|
|
||||||
{
|
|
||||||
return "quiz.html.twig";
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @codeCoverageIgnore
|
|
||||||
*/
|
|
||||||
public function isTraitable(): bool
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @codeCoverageIgnore
|
|
||||||
*/
|
|
||||||
public function getDebugInfo(): array
|
|
||||||
{
|
|
||||||
return array ( 126 => 59, 122 => 58, 117 => 56, 113 => 55, 108 => 53, 104 => 52, 99 => 50, 95 => 49, 87 => 44, 42 => 1,);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getSourceContext(): Source
|
|
||||||
{
|
|
||||||
return new Source("", "quiz.html.twig", "/Users/kiem/Documents/WikiFantasy/WF-Website/vue/templates/quiz.html.twig");
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,115 +0,0 @@
|
|||||||
<?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;
|
|
||||||
|
|
||||||
/* signin.html */
|
|
||||||
class __TwigTemplate_d8d8ee303bb01e4f719db1d13398adc0 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\">
|
|
||||||
<a href=\"favorite.html\"><img src=\"../images/coeur.svg\" alt=\"coeur\" width=\"67px\" height=\"67px\" onmousedown=\"return false\"></a>
|
|
||||||
<img id=\"theme-icon\" src=\"../images/light.svg\" alt=\"toggle theme\" width=\"72px\" height=\"37px\" onmousedown=\"return false\" onclick=\"toggleTheme()\">
|
|
||||||
<a href=\"quiz.html\"><img src=\"../images/quizz.svg\" alt=\"quizz\" width=\"51px\" height=\"82px\" onmousedown=\"return false\"></a>
|
|
||||||
</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>▶ S'inscrire ◀</h1>
|
|
||||||
<form action=\"../script/signin.php\" method=\"post\">
|
|
||||||
<div class=\"signin\">
|
|
||||||
<div class=\"DivId\">
|
|
||||||
<p>Identifiant *</p>
|
|
||||||
<input type=\"text\" class=\"champ\" id=\"name\" name=\"name\" required/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class=\"DivEmail\">
|
|
||||||
<p>Email *</p>
|
|
||||||
<input type=\"email\" class=\"champ\" id=\"email\" name=\"email\" required/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class=\"mdp\">
|
|
||||||
<p>Mot de passe *</p>
|
|
||||||
<input type=\"password\" class=\"champ\" id=\"pswd\" name=\"pswd\" required/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class=\"confmdp\">
|
|
||||||
<p>Confirmer mot de passe *</p>
|
|
||||||
<input type=\"password\" class=\"champ\" id=\"confpswd\" name=\"confpswd\" required/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class=\"imgprof\">
|
|
||||||
<p>Image *</p>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class=\"confirmer\">
|
|
||||||
<input type=\"submit\" class=\"btn\" value=\"Inscription\" />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
</body>
|
|
||||||
</html>";
|
|
||||||
yield from [];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @codeCoverageIgnore
|
|
||||||
*/
|
|
||||||
public function getTemplateName(): string
|
|
||||||
{
|
|
||||||
return "signin.html";
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @codeCoverageIgnore
|
|
||||||
*/
|
|
||||||
public function getDebugInfo(): array
|
|
||||||
{
|
|
||||||
return array ( 42 => 1,);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getSourceContext(): Source
|
|
||||||
{
|
|
||||||
return new Source("", "signin.html", "/home/www/lebeaulato/public_html/WF-Website/vue/templates/signin.html");
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,90 +0,0 @@
|
|||||||
<?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;
|
|
||||||
|
|
||||||
/* head.html.twig */
|
|
||||||
class __TwigTemplate_eb23fe14e9c99cb057475369e77b2ea7 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 "<!DOCTYPE html>
|
|
||||||
<html lang=\"fr\">
|
|
||||||
<head>
|
|
||||||
<meta charset=\"UTF-8\">
|
|
||||||
<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">
|
|
||||||
<title>";
|
|
||||||
// line 6
|
|
||||||
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["title"] ?? null), "html", null, true);
|
|
||||||
yield "</title>
|
|
||||||
<link rel=\"stylesheet\" href=\"";
|
|
||||||
// line 7
|
|
||||||
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["style"] ?? null), "html", null, true);
|
|
||||||
yield "\">
|
|
||||||
<link id=\"favicon\" rel=\"icon\" href=\"../../public/images/iconeSombre.ico\" />
|
|
||||||
<script src=\"../public/script/theme-toggle.js\"></script>
|
|
||||||
</head>
|
|
||||||
";
|
|
||||||
yield from [];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @codeCoverageIgnore
|
|
||||||
*/
|
|
||||||
public function getTemplateName(): string
|
|
||||||
{
|
|
||||||
return "head.html.twig";
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @codeCoverageIgnore
|
|
||||||
*/
|
|
||||||
public function isTraitable(): bool
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @codeCoverageIgnore
|
|
||||||
*/
|
|
||||||
public function getDebugInfo(): array
|
|
||||||
{
|
|
||||||
return array ( 53 => 7, 49 => 6, 42 => 1,);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getSourceContext(): Source
|
|
||||||
{
|
|
||||||
return new Source("", "head.html.twig", "/home/www/lebeaulato/public_html/WF-Website/vue/templates/head.html.twig");
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,78 +0,0 @@
|
|||||||
<?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;
|
|
||||||
|
|
||||||
/* bandeau.html.twig */
|
|
||||||
class __TwigTemplate_012dc2aef67e620d386f46e331598640 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=\"header\">
|
|
||||||
<div class=\"nav\">
|
|
||||||
<a href=\"favorite.html\"><img src=\"../images/coeur.svg\" alt=\"coeur\" width=\"67px\" height=\"67px\" onmousedown=\"return false\"></a>
|
|
||||||
<img id=\"theme-icon\" src=\"../images/light.svg\" alt=\"toggle theme\" width=\"72px\" height=\"37px\" onmousedown=\"return false\" onclick=\"toggleTheme()\">
|
|
||||||
<a href=\"quiz.html\"><img src=\"../images/quizz.svg\" alt=\"quizz\" width=\"51px\" height=\"82px\" onmousedown=\"return false\"></a>
|
|
||||||
</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\">
|
|
||||||
<a href=\"profil.html\"><img src=\"../images/user_dark.png\" alt=\"user\" width=\"70px\" height=\"70px\" onmousedown=\"return false\"></a>
|
|
||||||
</div>
|
|
||||||
</div>";
|
|
||||||
yield from [];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @codeCoverageIgnore
|
|
||||||
*/
|
|
||||||
public function getTemplateName(): string
|
|
||||||
{
|
|
||||||
return "bandeau.html.twig";
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @codeCoverageIgnore
|
|
||||||
*/
|
|
||||||
public function getDebugInfo(): array
|
|
||||||
{
|
|
||||||
return array ( 42 => 1,);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getSourceContext(): Source
|
|
||||||
{
|
|
||||||
return new Source("", "bandeau.html.twig", "/home/www/lebeaulato/public_html/WF-Website/vue/templates/bandeau.html.twig");
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,144 +0,0 @@
|
|||||||
<?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;
|
|
||||||
|
|
||||||
/* signin4.html.twig */
|
|
||||||
class __TwigTemplate_02d73cdfa663473648587454068306f0 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 "<!DOCTYPE html>
|
|
||||||
<html lang=\"fr\">
|
|
||||||
<head>
|
|
||||||
<meta charset=\"UTF-8\">
|
|
||||||
<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">
|
|
||||||
<link rel=\"stylesheet\" type=\"text/css\" href=\"../public/styles/styleSignin.css\" media=\"screen\">
|
|
||||||
<title>Wiki Fantasy : Inscription</title>
|
|
||||||
<link id=\"favicon\" rel=\"icon\" href=\"../images/iconeSombre.ico\"> <!-- Par défaut sombre -->
|
|
||||||
<link href=\"https://fonts.googleapis.com/css2?family=Lemon&display=swap\" rel=\"stylesheet\">
|
|
||||||
<script defer src=\"../public/script/theme-toggle.js\"></script>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div class=\"container\">
|
|
||||||
<div class=\"header\">
|
|
||||||
<div class=\"nav\">
|
|
||||||
<a href=\"favorite.html\"><img src=\"../images/coeur.svg\" alt=\"coeur\" width=\"67px\" height=\"67px\" onmousedown=\"return false\"></a>
|
|
||||||
<img id=\"theme-icon\" src=\"../images/light.svg\" alt=\"toggle theme\" width=\"72px\" height=\"37px\" onmousedown=\"return false\" onclick=\"toggleTheme()\">
|
|
||||||
<a href=\"quiz.html\"><img src=\"../images/quizz.svg\" alt=\"quizz\" width=\"51px\" height=\"82px\" onmousedown=\"return false\"></a>
|
|
||||||
</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>▶ ";
|
|
||||||
// line 28
|
|
||||||
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["errors"] ?? null), "html", null, true);
|
|
||||||
yield " ◀</h1>
|
|
||||||
<form method=\"post\">
|
|
||||||
<div class=\"signin\">
|
|
||||||
<div class=\"DivId\">
|
|
||||||
<p>Identifiant *</p>
|
|
||||||
<input type=\"text\" class=\"champ\" id=\"pseudo\" name=\"pseudo\" placeholder=\"Id\" required/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class=\"DivEmail\">
|
|
||||||
<p>Email *</p>
|
|
||||||
<input type=\"email\" class=\"champ\" id=\"email\" name=\"email\" required/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class=\"mdp\">
|
|
||||||
<p>Mot de passe *</p>
|
|
||||||
<input type=\"password\" class=\"champ\" id=\"mdp\" name=\"mdp\" required placeholder=\"";
|
|
||||||
// line 43
|
|
||||||
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["errors"] ?? null), "html", null, true);
|
|
||||||
yield "\"/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class=\"confmdp\">
|
|
||||||
<p>Confirmer mot de passe *</p>
|
|
||||||
<input type=\"password\" class=\"champ\" id=\"cmdp\" name=\"cmdp\" placeholder=\"";
|
|
||||||
// line 48
|
|
||||||
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["errors"] ?? null), "html", null, true);
|
|
||||||
yield "\" required/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class=\"imgprof\">
|
|
||||||
<p>Image *</p>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class=\"confirmer\">
|
|
||||||
<input type=\"submit\" class=\"btn\" value=\"Inscription\" />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
</body>
|
|
||||||
</html>";
|
|
||||||
yield from [];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @codeCoverageIgnore
|
|
||||||
*/
|
|
||||||
public function getTemplateName(): string
|
|
||||||
{
|
|
||||||
return "signin4.html.twig";
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @codeCoverageIgnore
|
|
||||||
*/
|
|
||||||
public function isTraitable(): bool
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @codeCoverageIgnore
|
|
||||||
*/
|
|
||||||
public function getDebugInfo(): array
|
|
||||||
{
|
|
||||||
return array ( 97 => 48, 89 => 43, 71 => 28, 42 => 1,);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getSourceContext(): Source
|
|
||||||
{
|
|
||||||
return new Source("", "signin4.html.twig", "/Users/kiem/Documents/WikiFantasy/WF-Website/vue/templates/signin4.html.twig");
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,114 +0,0 @@
|
|||||||
<?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.twig */
|
|
||||||
class __TwigTemplate_07a755596da3dba7ab89ea161b697e55 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 "<!DOCTYPE html>
|
|
||||||
<html lang=\"fr\">
|
|
||||||
<head>
|
|
||||||
<meta charset=\"UTF-8\">
|
|
||||||
<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">
|
|
||||||
<link rel=\"stylesheet\" type=\"text/css\" href=\"../public/styles/styleLogin.css\" media=\"screen\">
|
|
||||||
<title>Wiki Fantasy : Connexion</title>
|
|
||||||
<link id=\"favicon\" rel=\"icon\" href=\"../../images/iconeSombre.ico\"> <!-- Par défaut sombre -->
|
|
||||||
<link href=\"https://fonts.googleapis.com/css2?family=Lemon&display=swap\" rel=\"stylesheet\">
|
|
||||||
<script defer src=\"../public/script/theme-toggle.js\"></script>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<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>
|
|
||||||
|
|
||||||
<form class=\"login\" method=\"post\">
|
|
||||||
<p> <strong>Identifiant *</strong></p>
|
|
||||||
<input type=\"text\" class=\"connexion\" name=\"pseudo\" id=\"pseudo\" placeholder=\"Entrez votre pseudo ...\" required />
|
|
||||||
|
|
||||||
<p> <strong> Mot de passe *</strong></p>
|
|
||||||
<input type=\"password\" class=\"connexion\" name=\"mdp\" id=\"mdp\" placeholder=\"Entrez votre mdp ...\" required />
|
|
||||||
|
|
||||||
<div class=\"createAccount\">
|
|
||||||
<p class=\"createAccount\">Vous n'avez pas de compte?</p>
|
|
||||||
<a href=\"signin.html.twig\" class=\"createAccount\">S'incrire</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div class=\"buttonSubmitDiv\">
|
|
||||||
<button class=\"buttonSudmite\">Connexion</button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</form>
|
|
||||||
</body>
|
|
||||||
</html>";
|
|
||||||
yield from [];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @codeCoverageIgnore
|
|
||||||
*/
|
|
||||||
public function getTemplateName(): string
|
|
||||||
{
|
|
||||||
return "login.html.twig";
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @codeCoverageIgnore
|
|
||||||
*/
|
|
||||||
public function getDebugInfo(): array
|
|
||||||
{
|
|
||||||
return array ( 42 => 1,);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getSourceContext(): Source
|
|
||||||
{
|
|
||||||
return new Source("", "login.html.twig", "/Users/kiem/Documents/WikiFantasy/WF-Website/vue/templates/login.html.twig");
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,150 +0,0 @@
|
|||||||
<?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;
|
|
||||||
|
|
||||||
/* quote.html */
|
|
||||||
class __TwigTemplate_e80b479dc855245ef0d42a4f64b1f83e 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 "<html>
|
|
||||||
<body>
|
|
||||||
<div class=\"Quote_container\">
|
|
||||||
<img class=\"image_carac\" src=\"";
|
|
||||||
// line 4
|
|
||||||
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["srcImg"] ?? null), "html", null, true);
|
|
||||||
yield "\" alt=\"";
|
|
||||||
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["nameCarac"] ?? null), "html", null, true);
|
|
||||||
yield "\">
|
|
||||||
<h1 class=\"quote_content\">
|
|
||||||
<strong>
|
|
||||||
";
|
|
||||||
// line 7
|
|
||||||
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["quoteContent"] ?? null), "html", null, true);
|
|
||||||
yield "
|
|
||||||
</strong>
|
|
||||||
</h1>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
";
|
|
||||||
// line 12
|
|
||||||
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["sourceName"] ?? null), "html", null, true);
|
|
||||||
yield "
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
";
|
|
||||||
// line 15
|
|
||||||
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["nameCarac"] ?? null), "html", null, true);
|
|
||||||
yield "
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
";
|
|
||||||
// line 18
|
|
||||||
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["dateSortie"] ?? null), "html", null, true);
|
|
||||||
yield "
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<div class=\"like\">
|
|
||||||
<p>
|
|
||||||
";
|
|
||||||
// line 23
|
|
||||||
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["nbLike"] ?? null), "html", null, true);
|
|
||||||
yield "
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class=\"Comment_Container\">
|
|
||||||
";
|
|
||||||
// line 28
|
|
||||||
if ((Twig\Extension\CoreExtension::length($this->env->getCharset(), ($context["comment"] ?? null)) > 0)) {
|
|
||||||
yield " <div>
|
|
||||||
";
|
|
||||||
// line 29
|
|
||||||
$context['_parent'] = $context;
|
|
||||||
$context['_seq'] = CoreExtension::ensureTraversable(($context["comment"] ?? null));
|
|
||||||
foreach ($context['_seq'] as $context["_key"] => $context["com"]) {
|
|
||||||
// line 30
|
|
||||||
yield " <p class=\"userCom\">";
|
|
||||||
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(CoreExtension::getAttribute($this->env, $this->source, $context["com"], "user", [], "any", false, false, false, 30), "html", null, true);
|
|
||||||
yield "</p>
|
|
||||||
<p class=\"com\">";
|
|
||||||
// line 31
|
|
||||||
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(CoreExtension::getAttribute($this->env, $this->source, $context["com"], "content", [], "any", false, false, false, 31), "html", null, true);
|
|
||||||
yield "</p>
|
|
||||||
";
|
|
||||||
}
|
|
||||||
$_parent = $context['_parent'];
|
|
||||||
unset($context['_seq'], $context['_key'], $context['com'], $context['_parent']);
|
|
||||||
$context = array_intersect_key($context, $_parent) + $_parent;
|
|
||||||
// line 32
|
|
||||||
yield " </div>
|
|
||||||
";
|
|
||||||
}
|
|
||||||
// line 34
|
|
||||||
yield " </div>
|
|
||||||
</body>
|
|
||||||
</html>";
|
|
||||||
yield from [];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @codeCoverageIgnore
|
|
||||||
*/
|
|
||||||
public function getTemplateName(): string
|
|
||||||
{
|
|
||||||
return "quote.html";
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @codeCoverageIgnore
|
|
||||||
*/
|
|
||||||
public function isTraitable(): bool
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @codeCoverageIgnore
|
|
||||||
*/
|
|
||||||
public function getDebugInfo(): array
|
|
||||||
{
|
|
||||||
return array ( 116 => 34, 112 => 32, 104 => 31, 99 => 30, 95 => 29, 91 => 28, 83 => 23, 75 => 18, 69 => 15, 63 => 12, 55 => 7, 47 => 4, 42 => 1,);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getSourceContext(): Source
|
|
||||||
{
|
|
||||||
return new Source("", "quote.html", "/home/www/kekentin/public_html/WF/WF-Website/vue/templates/quote.html");
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,144 +0,0 @@
|
|||||||
<?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;
|
|
||||||
|
|
||||||
/* signin5.html.twig */
|
|
||||||
class __TwigTemplate_b1f0b539b8066ca5a58d316472e062b0 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 "<!DOCTYPE html>
|
|
||||||
<html lang=\"fr\">
|
|
||||||
<head>
|
|
||||||
<meta charset=\"UTF-8\">
|
|
||||||
<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">
|
|
||||||
<link rel=\"stylesheet\" type=\"text/css\" href=\"../public/styles/styleSignin.css\" media=\"screen\">
|
|
||||||
<title>Wiki Fantasy : Inscription</title>
|
|
||||||
<link id=\"favicon\" rel=\"icon\" href=\"../images/iconeSombre.ico\"> <!-- Par défaut sombre -->
|
|
||||||
<link href=\"https://fonts.googleapis.com/css2?family=Lemon&display=swap\" rel=\"stylesheet\">
|
|
||||||
<script defer src=\"../public/script/theme-toggle.js\"></script>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div class=\"container\">
|
|
||||||
<div class=\"header\">
|
|
||||||
<div class=\"nav\">
|
|
||||||
<a href=\"favorite.html\"><img src=\"../images/coeur.svg\" alt=\"coeur\" width=\"67px\" height=\"67px\" onmousedown=\"return false\"></a>
|
|
||||||
<img id=\"theme-icon\" src=\"../images/light.svg\" alt=\"toggle theme\" width=\"72px\" height=\"37px\" onmousedown=\"return false\" onclick=\"toggleTheme()\">
|
|
||||||
<a href=\"quiz.html\"><img src=\"../images/quizz.svg\" alt=\"quizz\" width=\"51px\" height=\"82px\" onmousedown=\"return false\"></a>
|
|
||||||
</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>▶ ";
|
|
||||||
// line 28
|
|
||||||
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["test"] ?? null), "html", null, true);
|
|
||||||
yield " ◀</h1>
|
|
||||||
<form method=\"post\">
|
|
||||||
<div class=\"signin\">
|
|
||||||
<div class=\"DivId\">
|
|
||||||
<p>Identifiant *</p>
|
|
||||||
<input type=\"text\" class=\"champ\" id=\"pseudo\" name=\"pseudo\" placeholder=\"Id\" required/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class=\"DivEmail\">
|
|
||||||
<p>Email *</p>
|
|
||||||
<input type=\"email\" class=\"champ\" id=\"email\" name=\"email\" required/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class=\"mdp\">
|
|
||||||
<p>Mot de passe *</p>
|
|
||||||
<input type=\"password\" class=\"champ\" id=\"mdp\" name=\"mdp\" required placeholder=\"";
|
|
||||||
// line 43
|
|
||||||
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["errors"] ?? null), "html", null, true);
|
|
||||||
yield "\"/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class=\"confmdp\">
|
|
||||||
<p>Confirmer mot de passe *</p>
|
|
||||||
<input type=\"password\" class=\"champ\" id=\"cmdp\" name=\"cmdp\" placeholder=\"";
|
|
||||||
// line 48
|
|
||||||
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["errors"] ?? null), "html", null, true);
|
|
||||||
yield "\" required/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class=\"imgprof\">
|
|
||||||
<p>Image *</p>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class=\"confirmer\">
|
|
||||||
<input type=\"submit\" class=\"btn\" value=\"Inscription\" />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
</body>
|
|
||||||
</html>";
|
|
||||||
yield from [];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @codeCoverageIgnore
|
|
||||||
*/
|
|
||||||
public function getTemplateName(): string
|
|
||||||
{
|
|
||||||
return "signin5.html.twig";
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @codeCoverageIgnore
|
|
||||||
*/
|
|
||||||
public function isTraitable(): bool
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @codeCoverageIgnore
|
|
||||||
*/
|
|
||||||
public function getDebugInfo(): array
|
|
||||||
{
|
|
||||||
return array ( 97 => 48, 89 => 43, 71 => 28, 42 => 1,);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getSourceContext(): Source
|
|
||||||
{
|
|
||||||
return new Source("", "signin5.html.twig", "/Users/kiem/Documents/WikiFantasy/WF-Website/vue/templates/signin5.html.twig");
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,144 +0,0 @@
|
|||||||
<?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;
|
|
||||||
|
|
||||||
/* signin6.html.twig */
|
|
||||||
class __TwigTemplate_7a4f39ed5cce012c6d4972b06e431782 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 "<!DOCTYPE html>
|
|
||||||
<html lang=\"fr\">
|
|
||||||
<head>
|
|
||||||
<meta charset=\"UTF-8\">
|
|
||||||
<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">
|
|
||||||
<link rel=\"stylesheet\" type=\"text/css\" href=\"../public/styles/styleSignin.css\" media=\"screen\">
|
|
||||||
<title>Wiki Fantasy : Inscription</title>
|
|
||||||
<link id=\"favicon\" rel=\"icon\" href=\"../images/iconeSombre.ico\"> <!-- Par défaut sombre -->
|
|
||||||
<link href=\"https://fonts.googleapis.com/css2?family=Lemon&display=swap\" rel=\"stylesheet\">
|
|
||||||
<script defer src=\"../public/script/theme-toggle.js\"></script>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div class=\"container\">
|
|
||||||
<div class=\"header\">
|
|
||||||
<div class=\"nav\">
|
|
||||||
<a href=\"favorite.html\"><img src=\"../images/coeur.svg\" alt=\"coeur\" width=\"67px\" height=\"67px\" onmousedown=\"return false\"></a>
|
|
||||||
<img id=\"theme-icon\" src=\"../images/light.svg\" alt=\"toggle theme\" width=\"72px\" height=\"37px\" onmousedown=\"return false\" onclick=\"toggleTheme()\">
|
|
||||||
<a href=\"quiz.html\"><img src=\"../images/quizz.svg\" alt=\"quizz\" width=\"51px\" height=\"82px\" onmousedown=\"return false\"></a>
|
|
||||||
</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>▶ ";
|
|
||||||
// line 28
|
|
||||||
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["test"] ?? null), "html", null, true);
|
|
||||||
yield " ◀</h1>
|
|
||||||
<form method=\"post\">
|
|
||||||
<div class=\"signin\">
|
|
||||||
<div class=\"DivId\">
|
|
||||||
<p>Identifiant *</p>
|
|
||||||
<input type=\"text\" class=\"champ\" id=\"pseudo\" name=\"pseudo\" placeholder=\"Id\" required/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class=\"DivEmail\">
|
|
||||||
<p>Email *</p>
|
|
||||||
<input type=\"email\" class=\"champ\" id=\"email\" name=\"email\" required/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class=\"mdp\">
|
|
||||||
<p>Mot de passe *</p>
|
|
||||||
<input type=\"password\" class=\"champ\" id=\"mdp\" name=\"mdp\" required placeholder=\"";
|
|
||||||
// line 43
|
|
||||||
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["errors"] ?? null), "html", null, true);
|
|
||||||
yield "\"/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class=\"confmdp\">
|
|
||||||
<p>Confirmer mot de passe *</p>
|
|
||||||
<input type=\"password\" class=\"champ\" id=\"cmdp\" name=\"cmdp\" placeholder=\"";
|
|
||||||
// line 48
|
|
||||||
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["errors"] ?? null), "html", null, true);
|
|
||||||
yield "\" required/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class=\"imgprof\">
|
|
||||||
<p>Image *</p>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class=\"confirmer\">
|
|
||||||
<input type=\"hidden\" class=\"btn\" name=\"action\" value=\"validsignin\" />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
</body>
|
|
||||||
</html>";
|
|
||||||
yield from [];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @codeCoverageIgnore
|
|
||||||
*/
|
|
||||||
public function getTemplateName(): string
|
|
||||||
{
|
|
||||||
return "signin6.html.twig";
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @codeCoverageIgnore
|
|
||||||
*/
|
|
||||||
public function isTraitable(): bool
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @codeCoverageIgnore
|
|
||||||
*/
|
|
||||||
public function getDebugInfo(): array
|
|
||||||
{
|
|
||||||
return array ( 97 => 48, 89 => 43, 71 => 28, 42 => 1,);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getSourceContext(): Source
|
|
||||||
{
|
|
||||||
return new Source("", "signin6.html.twig", "/Users/kiem/Documents/WikiFantasy/WF-Website/vue/templates/signin6.html.twig");
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,144 +0,0 @@
|
|||||||
<?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;
|
|
||||||
|
|
||||||
/* signin7.html.twig */
|
|
||||||
class __TwigTemplate_179113c369ca1501764a939233b8ee58 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 "<!DOCTYPE html>
|
|
||||||
<html lang=\"fr\">
|
|
||||||
<head>
|
|
||||||
<meta charset=\"UTF-8\">
|
|
||||||
<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">
|
|
||||||
<link rel=\"stylesheet\" type=\"text/css\" href=\"../public/styles/styleSignin.css\" media=\"screen\">
|
|
||||||
<title>Wiki Fantasy : Inscription</title>
|
|
||||||
<link id=\"favicon\" rel=\"icon\" href=\"../images/iconeSombre.ico\"> <!-- Par défaut sombre -->
|
|
||||||
<link href=\"https://fonts.googleapis.com/css2?family=Lemon&display=swap\" rel=\"stylesheet\">
|
|
||||||
<script defer src=\"../public/script/theme-toggle.js\"></script>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div class=\"container\">
|
|
||||||
<div class=\"header\">
|
|
||||||
<div class=\"nav\">
|
|
||||||
<a href=\"favorite.html\"><img src=\"../images/coeur.svg\" alt=\"coeur\" width=\"67px\" height=\"67px\" onmousedown=\"return false\"></a>
|
|
||||||
<img id=\"theme-icon\" src=\"../images/light.svg\" alt=\"toggle theme\" width=\"72px\" height=\"37px\" onmousedown=\"return false\" onclick=\"toggleTheme()\">
|
|
||||||
<a href=\"quiz.html\"><img src=\"../images/quizz.svg\" alt=\"quizz\" width=\"51px\" height=\"82px\" onmousedown=\"return false\"></a>
|
|
||||||
</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>▶ ";
|
|
||||||
// line 28
|
|
||||||
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["test"] ?? null), "html", null, true);
|
|
||||||
yield " ◀</h1>
|
|
||||||
<form method=\"post\">
|
|
||||||
<div class=\"signin\">
|
|
||||||
<div class=\"DivId\">
|
|
||||||
<p>Identifiant *</p>
|
|
||||||
<input type=\"text\" class=\"champ\" id=\"pseudo\" name=\"pseudo\" placeholder=\"Id\" required/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class=\"DivEmail\">
|
|
||||||
<p>Email *</p>
|
|
||||||
<input type=\"email\" class=\"champ\" id=\"email\" name=\"email\" required/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class=\"mdp\">
|
|
||||||
<p>Mot de passe *</p>
|
|
||||||
<input type=\"password\" class=\"champ\" id=\"mdp\" name=\"mdp\" required placeholder=\"";
|
|
||||||
// line 43
|
|
||||||
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["errors"] ?? null), "html", null, true);
|
|
||||||
yield "\"/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class=\"confmdp\">
|
|
||||||
<p>Confirmer mot de passe *</p>
|
|
||||||
<input type=\"password\" class=\"champ\" id=\"cmdp\" name=\"cmdp\" placeholder=\"";
|
|
||||||
// line 48
|
|
||||||
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["errors"] ?? null), "html", null, true);
|
|
||||||
yield "\" required/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class=\"imgprof\">
|
|
||||||
<p>Image *</p>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class=\"confirmer\">
|
|
||||||
<input type=\"submit\" class=\"btn\" name=\"action\" value=\"validsignin\" />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
</body>
|
|
||||||
</html>";
|
|
||||||
yield from [];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @codeCoverageIgnore
|
|
||||||
*/
|
|
||||||
public function getTemplateName(): string
|
|
||||||
{
|
|
||||||
return "signin7.html.twig";
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @codeCoverageIgnore
|
|
||||||
*/
|
|
||||||
public function isTraitable(): bool
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @codeCoverageIgnore
|
|
||||||
*/
|
|
||||||
public function getDebugInfo(): array
|
|
||||||
{
|
|
||||||
return array ( 97 => 48, 89 => 43, 71 => 28, 42 => 1,);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getSourceContext(): Source
|
|
||||||
{
|
|
||||||
return new Source("", "signin7.html.twig", "/Users/kiem/Documents/WikiFantasy/WF-Website/vue/templates/signin7.html.twig");
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,144 +0,0 @@
|
|||||||
<?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;
|
|
||||||
|
|
||||||
/* signin1.html.twig */
|
|
||||||
class __TwigTemplate_c5ff4ebd3f89e0ca0a1643dfb2cba640 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 "<!DOCTYPE html>
|
|
||||||
<html lang=\"fr\">
|
|
||||||
<head>
|
|
||||||
<meta charset=\"UTF-8\">
|
|
||||||
<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">
|
|
||||||
<link rel=\"stylesheet\" type=\"text/css\" href=\"../public/styles/styleSignin.css\" media=\"screen\">
|
|
||||||
<title>Wiki Fantasy : Inscription</title>
|
|
||||||
<link id=\"favicon\" rel=\"icon\" href=\"../images/iconeSombre.ico\"> <!-- Par défaut sombre -->
|
|
||||||
<link href=\"https://fonts.googleapis.com/css2?family=Lemon&display=swap\" rel=\"stylesheet\">
|
|
||||||
<script defer src=\"../public/script/theme-toggle.js\"></script>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div class=\"container\">
|
|
||||||
<div class=\"header\">
|
|
||||||
<div class=\"nav\">
|
|
||||||
<a href=\"favorite.html\"><img src=\"../images/coeur.svg\" alt=\"coeur\" width=\"67px\" height=\"67px\" onmousedown=\"return false\"></a>
|
|
||||||
<img id=\"theme-icon\" src=\"../images/light.svg\" alt=\"toggle theme\" width=\"72px\" height=\"37px\" onmousedown=\"return false\" onclick=\"toggleTheme()\">
|
|
||||||
<a href=\"quiz.html\"><img src=\"../images/quizz.svg\" alt=\"quizz\" width=\"51px\" height=\"82px\" onmousedown=\"return false\"></a>
|
|
||||||
</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>▶ ";
|
|
||||||
// line 28
|
|
||||||
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["test"] ?? null), "html", null, true);
|
|
||||||
yield " ◀</h1>
|
|
||||||
<form method=\"post\">
|
|
||||||
<div class=\"signin\">
|
|
||||||
<div class=\"DivId\">
|
|
||||||
<p>Identifiant *</p>
|
|
||||||
<input type=\"text\" class=\"champ\" id=\"pseudo\" name=\"pseudo\" placeholder=\"Id\" required/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class=\"DivEmail\">
|
|
||||||
<p>Email *</p>
|
|
||||||
<input type=\"email\" class=\"champ\" id=\"email\" name=\"email\" required/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class=\"mdp\">
|
|
||||||
<p>Mot de passe *</p>
|
|
||||||
<input type=\"password\" class=\"champ\" id=\"mdp\" name=\"mdp\" required placeholder=\"";
|
|
||||||
// line 43
|
|
||||||
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["errors"] ?? null), "html", null, true);
|
|
||||||
yield "\"/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class=\"confmdp\">
|
|
||||||
<p>Confirmer mot de passe *</p>
|
|
||||||
<input type=\"password\" class=\"champ\" id=\"cmdp\" name=\"cmdp\" placeholder=\"";
|
|
||||||
// line 48
|
|
||||||
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["errors"] ?? null), "html", null, true);
|
|
||||||
yield "\" required/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class=\"imgprof\">
|
|
||||||
<p>Image *</p>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class=\"confirmer\">
|
|
||||||
<input type=\"submit\" class=\"btn\" name=\"action\" value=\"validsignin\" />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
</body>
|
|
||||||
</html>";
|
|
||||||
yield from [];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @codeCoverageIgnore
|
|
||||||
*/
|
|
||||||
public function getTemplateName(): string
|
|
||||||
{
|
|
||||||
return "signin1.html.twig";
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @codeCoverageIgnore
|
|
||||||
*/
|
|
||||||
public function isTraitable(): bool
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @codeCoverageIgnore
|
|
||||||
*/
|
|
||||||
public function getDebugInfo(): array
|
|
||||||
{
|
|
||||||
return array ( 97 => 48, 89 => 43, 71 => 28, 42 => 1,);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getSourceContext(): Source
|
|
||||||
{
|
|
||||||
return new Source("", "signin1.html.twig", "/Users/kiem/Documents/WikiFantasy/WF-Website/vue/templates/signin1.html.twig");
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,127 +0,0 @@
|
|||||||
<?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;
|
|
||||||
|
|
||||||
/* signin.html.twig */
|
|
||||||
class __TwigTemplate_f3fb3bd89b84ec5439a034a1b7acb44e 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 "<!DOCTYPE html>
|
|
||||||
<html lang=\"fr\">
|
|
||||||
<head>
|
|
||||||
<meta charset=\"UTF-8\">
|
|
||||||
<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">
|
|
||||||
<link rel=\"stylesheet\" type=\"text/css\" href=\"../public/styles/styleSignin.css\" media=\"screen\">
|
|
||||||
<title>Wiki Fantasy : Inscription</title>
|
|
||||||
<link id=\"favicon\" rel=\"icon\" href=\"../images/iconeSombre.ico\"> <!-- Par défaut sombre -->
|
|
||||||
<link href=\"https://fonts.googleapis.com/css2?family=Lemon&display=swap\" rel=\"stylesheet\">
|
|
||||||
<script defer src=\"../public/script/theme-toggle.js\"></script>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div class=\"container\">
|
|
||||||
<div class=\"header\">
|
|
||||||
<div class=\"nav\">
|
|
||||||
<a href=\"favorite.html\"><img src=\"../images/coeur.svg\" alt=\"coeur\" width=\"67px\" height=\"67px\" onmousedown=\"return false\"></a>
|
|
||||||
<img id=\"theme-icon\" src=\"../images/light.svg\" alt=\"toggle theme\" width=\"72px\" height=\"37px\" onmousedown=\"return false\" onclick=\"toggleTheme()\">
|
|
||||||
<a href=\"quiz.html\"><img src=\"../images/quizz.svg\" alt=\"quizz\" width=\"51px\" height=\"82px\" onmousedown=\"return false\"></a>
|
|
||||||
</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>▶ S'inscrire ◀</h1>
|
|
||||||
<form method=\"post\">
|
|
||||||
<div class=\"signin\">
|
|
||||||
<div class=\"DivId\">
|
|
||||||
<p>Identifiant *</p>
|
|
||||||
<input type=\"text\" class=\"champ\" id=\"pseudo\" name=\"pseudo\" required/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class=\"DivEmail\">
|
|
||||||
<p>Email *</p>
|
|
||||||
<input type=\"email\" class=\"champ\" id=\"email\" name=\"email\" required/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class=\"mdp\">
|
|
||||||
<p>Mot de passe *</p>
|
|
||||||
<input type=\"password\" class=\"champ\" id=\"mdp\" name=\"mdp\" required/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class=\"confmdp\">
|
|
||||||
<p>Confirmer mot de passe *</p>
|
|
||||||
<input type=\"password\" class=\"champ\" id=\"cmdp\" name=\"cmdp\" required/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class=\"imgprof\">
|
|
||||||
<p>Image *</p>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class=\"confirmer\">
|
|
||||||
<input type=\"submit\" class=\"btn\" value=\"Inscription\" />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
</body>
|
|
||||||
</html>";
|
|
||||||
yield from [];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @codeCoverageIgnore
|
|
||||||
*/
|
|
||||||
public function getTemplateName(): string
|
|
||||||
{
|
|
||||||
return "signin.html.twig";
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @codeCoverageIgnore
|
|
||||||
*/
|
|
||||||
public function getDebugInfo(): array
|
|
||||||
{
|
|
||||||
return array ( 42 => 1,);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getSourceContext(): Source
|
|
||||||
{
|
|
||||||
return new Source("", "signin.html.twig", "/Users/kiem/Documents/WikiFantasy/WF-Website/vue/templates/signin.html.twig");
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,141 +0,0 @@
|
|||||||
<?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;
|
|
||||||
|
|
||||||
/* signin3.html.twig */
|
|
||||||
class __TwigTemplate_13f68f972002b997fce4f87301b50b63 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 "<!DOCTYPE html>
|
|
||||||
<html lang=\"fr\">
|
|
||||||
<head>
|
|
||||||
<meta charset=\"UTF-8\">
|
|
||||||
<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">
|
|
||||||
<link rel=\"stylesheet\" type=\"text/css\" href=\"../public/styles/styleSignin.css\" media=\"screen\">
|
|
||||||
<title>Wiki Fantasy : Inscription</title>
|
|
||||||
<link id=\"favicon\" rel=\"icon\" href=\"../images/iconeSombre.ico\"> <!-- Par défaut sombre -->
|
|
||||||
<link href=\"https://fonts.googleapis.com/css2?family=Lemon&display=swap\" rel=\"stylesheet\">
|
|
||||||
<script defer src=\"../public/script/theme-toggle.js\"></script>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div class=\"container\">
|
|
||||||
<div class=\"header\">
|
|
||||||
<div class=\"nav\">
|
|
||||||
<a href=\"favorite.html\"><img src=\"../images/coeur.svg\" alt=\"coeur\" width=\"67px\" height=\"67px\" onmousedown=\"return false\"></a>
|
|
||||||
<img id=\"theme-icon\" src=\"../images/light.svg\" alt=\"toggle theme\" width=\"72px\" height=\"37px\" onmousedown=\"return false\" onclick=\"toggleTheme()\">
|
|
||||||
<a href=\"quiz.html\"><img src=\"../images/quizz.svg\" alt=\"quizz\" width=\"51px\" height=\"82px\" onmousedown=\"return false\"></a>
|
|
||||||
</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>▶ lo ◀</h1>
|
|
||||||
<form method=\"post\">
|
|
||||||
<div class=\"signin\">
|
|
||||||
<div class=\"DivId\">
|
|
||||||
<p>Identifiant *</p>
|
|
||||||
<input type=\"text\" class=\"champ\" id=\"pseudo\" name=\"pseudo\" placeholder=\"Id\" required/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class=\"DivEmail\">
|
|
||||||
<p>Email *</p>
|
|
||||||
<input type=\"email\" class=\"champ\" id=\"email\" name=\"email\" required/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class=\"mdp\">
|
|
||||||
<p>Mot de passe *</p>
|
|
||||||
<input type=\"password\" class=\"champ\" id=\"mdp\" name=\"mdp\" required placeholder=\"";
|
|
||||||
// line 43
|
|
||||||
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["errors"] ?? null), "html", null, true);
|
|
||||||
yield "\"/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class=\"confmdp\">
|
|
||||||
<p>Confirmer mot de passe *</p>
|
|
||||||
<input type=\"password\" class=\"champ\" id=\"cmdp\" name=\"cmdp\" placeholder=\"";
|
|
||||||
// line 48
|
|
||||||
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["errors"] ?? null), "html", null, true);
|
|
||||||
yield "\" required/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class=\"imgprof\">
|
|
||||||
<p>Image *</p>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class=\"confirmer\">
|
|
||||||
<input type=\"submit\" class=\"btn\" value=\"Inscription\" />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
</body>
|
|
||||||
</html>";
|
|
||||||
yield from [];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @codeCoverageIgnore
|
|
||||||
*/
|
|
||||||
public function getTemplateName(): string
|
|
||||||
{
|
|
||||||
return "signin3.html.twig";
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @codeCoverageIgnore
|
|
||||||
*/
|
|
||||||
public function isTraitable(): bool
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @codeCoverageIgnore
|
|
||||||
*/
|
|
||||||
public function getDebugInfo(): array
|
|
||||||
{
|
|
||||||
return array ( 94 => 48, 86 => 43, 42 => 1,);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getSourceContext(): Source
|
|
||||||
{
|
|
||||||
return new Source("", "signin3.html.twig", "/Users/kiem/Documents/WikiFantasy/WF-Website/vue/templates/signin3.html.twig");
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,102 +0,0 @@
|
|||||||
<?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");
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in new issue