Update file compte.php

This commit is contained in:
Jan BELLON 2024-03-08 22:06:37 +00:00
parent 568e320510
commit 890a59fc8a

View File

@ -33,14 +33,14 @@ if(isset($_POST['delete_account'])) {
.body { .body {
<?=$theme_dark?> <?=$theme_dark?>
} }
<?php for ($i = 0; $i < count($themes_dark); $i++) { echo "#palette" . $i . " { " . $themes_dark[$i] . " } " };?> <?php for ($i = 0; $i < count($themes_dark); $i++) { echo "#palette" . $i . " { " . $themes_dark[$i] . " } "; }?>
} }
@media (prefers-color-scheme: light) { @media (prefers-color-scheme: light) {
.body { .body {
<?=$theme_light?> <?=$theme_light?>
} }
} }
<?php for ($i = 0; $i < count($themes_light); $i++) { echo "#palette" . $i . " { " . $themes_light[$i] . " } " };?> <?php for ($i = 0; $i < count($themes_light); $i++) { echo "#palette" . $i . " { " . $themes_light[$i] . " } "; }?>
</style> </style>
<link rel="icon" href="src/img/favicon.ico"> <link rel="icon" href="src/img/favicon.ico">
<title><?=$title?></title> <title><?=$title?></title>