This commit is contained in:
Boris 2022-11-14 15:10:22 +01:00
commit d7a6f9b49b
2 changed files with 11 additions and 5 deletions

View File

@ -2,11 +2,9 @@
require_once('config.php');
die($_SESSION['player_pubkey']);
$bodyIds = 'home';
include_once('header.php');
echo '
<nav>
<ul>
@ -33,6 +31,14 @@ echo '
</span>
</a>
</li>
<li id="dashboard-minelife">
<a href="minelife.html">
<span>
Manuel
</span>
</a>
</li>
</ul>

View File

@ -9,11 +9,11 @@ if (isset($_POST['salt'], $_POST['pepper'])) {
$fred = new Fred();
$keygen = new Keygen();
// $playerG1Id = $fred->donneMoiSaPutaindeG1Pub($_POST['salt'], $_POST['pepper']);
$playerG1Id = $fred->donneMoiSaPutaindeG1Pub($_POST['salt'], $_POST['pepper']);
$toto = 'QP1VkfaFUMdHZmHgPMi7q5wJJHaQhZcEqs5A86NigKr';
$boris = '25zB1gSC7Qhwnx463cuDLDCKLRVieLAgFiPbYq6jVHG9';
$playerG1Id = $toto;
// $playerG1Id = $toto;
$_SESSION['player_pubkey'] = $playerG1Id;
@ -66,4 +66,4 @@ if (isset($_POST['salt'], $_POST['pepper'])) {
include_once('footer.php');
}
}