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.
3.01-QCM_MuscuMaths/Website/cache/bb/bbb94270b2cc50f8b189cc0bb27...

102 lines
3.4 KiB

<?php
use Twig\Environment;
use Twig\Error\LoaderError;
use Twig\Error\RuntimeError;
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;
/* accueil.twig */
class __TwigTemplate_b6c8947d2cab48858930d2a60d05dca4d1d69e979faaee7be7cde60446b3c59f extends Template
{
private $source;
private $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 = [])
{
$macros = $this->macros;
// line 1
echo "<!DOCTYPE html>
<html lang=\"fr\">
<html>
<head>
<meta charset=utf-8>
<title>Math'Educ</title>
<link href=\"https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css\" rel=\"stylesheet\" integrity=\"sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN\" crossorigin=\"anonymous\">
<style>
@font-face {
font-family: 'MenuFont';
src: url('Media/mathEducFont.ttf') format('truetype');
}
* {
font-family: 'MenuFont';
}
</style>
</head>
<body style=\"background: linear-gradient(to bottom, rgba(37, 34, 71, 1), rgba(37, 35, 72, 1));\">
<div class=\"d-flex flex-column align-items-center justify-content-between\" style=\"height:95vh\">
<img src=\"Media/Logo.png\" style=\"margin-top:50px; object-fit:fill;\" class=\"h-25\">
<a href=\"/solo\" class=\"text-white m-3 container text-center d-flex align-items-center w-75 rounded border border-white text-center\" style=\"background-color:green;text-decoration: none;color: black; height:20vh;\">
<div class=\"container text-center d-flex align-items-center text-center\">
<h1 class=\"mx-auto fs-1\">
SOLO
</h1>
</div>
</a>
<a href=\"/multi\" class=\"text-white m-3 container text-center d-flex align-items-center w-75 rounded border border-white text-center\" style=\"background-color:orange;text-decoration: none;color: black;height:20vh;\">
<div class=\"container text-center d-flex align-items-center text-center\">
<h1 class=\"mx-auto fs-1\">
MULTIJOUEUR
</h1>
</div>
</a>
<a href=\"/login\" class=\"text-white m-3 container text-center d-flex align-items-center w-75 rounded border border-white text-center\" style=\"background-color:blue;text-decoration: none;color: black;height:20vh;\">
<div class=\"container text-center d-flex align-items-center text-center\">
<h1 class=\"mx-auto fs-1\">
ADMINISTRATION
</h1>
</div>
</a>
</div>
</body>
</html>";
}
public function getTemplateName()
{
return "accueil.twig";
}
public function getDebugInfo()
{
return array ( 37 => 1,);
}
public function getSourceContext()
{
return new Source("", "accueil.twig", "C:\\MAMP\\htdocs\\3.01-QCM_MuscuMaths\\Website\\templates\\accueil.twig");
}
}