68 lines
2.0 KiB
PHP
Executable File
68 lines
2.0 KiB
PHP
Executable File
<?php define('__ROOT__', dirname(dirname(dirname(__FILE__))) );
|
|
require_once __ROOT__.'/vendor/autoload.php';
|
|
use \api\core\Request;
|
|
?>
|
|
|
|
<!-- [1] Gestion du sous-menu de gauche -->
|
|
|
|
<nav class='sub-menu-side'>
|
|
<span data-sublink='info'>
|
|
<span class='svg'><?php echo file_get_contents( __PUBLIC__.'/src/static/sub-menu-side/view.svg' ); ?></span>
|
|
<span>Informations</span>
|
|
</span>
|
|
|
|
<span data-sublink='password' >
|
|
<span class='svg'><?php echo file_get_contents( __PUBLIC__.'/src/static/sub-menu-side/password.svg' ); ?></span>
|
|
<span>Mot de passe</span>
|
|
</span>
|
|
|
|
<span data-sublink='admin' >
|
|
<span class='svg'><?php echo file_get_contents( __PUBLIC__.'/src/static/sub-menu-side/user.svg' ); ?></span>
|
|
<span>Administrateurs</span>
|
|
</span>
|
|
|
|
</nav>
|
|
|
|
<?php
|
|
|
|
|
|
echo "<section data-sublink='info'></section>";
|
|
|
|
/* CHANGEMENT MOT DE PASSE
|
|
*
|
|
*/
|
|
echo "<section data-sublink='password'>";
|
|
|
|
echo "<form class='search'>";
|
|
echo "<input id='old_pwd' type='password' placeholder=\"Code d'accès actuel\"><br>";
|
|
echo "<span class='error-msg old_pwd'></span><br>";
|
|
|
|
echo "<input id='new_pwd' type='password' placeholder=\"Nouveau code d'accès\"><br>";
|
|
echo "<span class='error-msg new_pwd'></span><br>";
|
|
|
|
echo "<input id='confirm_pwd' type='password' placeholder='Confirmation'><br>";
|
|
echo "<span class='error-msg confirm_pwd'></span><br>";
|
|
|
|
echo "<button id='update_pwd'>Mettre à jour</button>";
|
|
echo "</form>";
|
|
|
|
echo '</section>';
|
|
|
|
|
|
|
|
/* CREATION ADMINISTRATEUR
|
|
*
|
|
*/
|
|
echo "<section data-sublink='admin'>";
|
|
|
|
echo "<form class='valid'>";
|
|
echo "<input id='admin_username' type='text' placeholder='Identifiant'><br>";
|
|
echo "<span class='error-msg admin_username'></span><br>";
|
|
echo "<input id='admin_mail' type='text' placeholder='Adresse mail'><br>";
|
|
echo "<span class='error-msg admin_mail'></span><br>";
|
|
echo "<input id='admin_password' type='text' placeholder='Mot de passe généré...' disabled><br>";
|
|
|
|
echo "<button id='admin_submit'>Créer l'administrateur</button>";
|
|
echo "</form>";
|
|
|
|
echo '</section>';
|