35 lines
1.7 KiB
PHP
Executable File
35 lines
1.7 KiB
PHP
Executable File
<?php
|
|
$nomFicAppelant = basename(__FILE__);
|
|
// ---------------------------------------------------
|
|
// Titre de la page : recevoir ses identifiants
|
|
// ---------------------------------------------------
|
|
echo '<h1>';
|
|
dynamiqItemImage (0,0,'connTitre', 'span', '-action-', 'client', 66, 'icones', '-textClass-','-varStyle-');
|
|
echo '</h1>';
|
|
|
|
echo '<div id="pageConnexion" style="grid-column:1 / span 2; width:100%;" >';
|
|
// ---------------------------------------------------
|
|
// msg ==> login
|
|
// ---------------------------------------------------
|
|
dynamiqItemImage (0, 0, 'libConnCell', 'span', '-', 'client', 8, '-', '-textClass-', '-');
|
|
|
|
// ---------------------------------------------------
|
|
// champ email
|
|
// ---------------------------------------------------
|
|
if (isset($idMail)) $test = strpos($idMail,'@');
|
|
echo '<div class="champsCliCell" style="width:100%; margin:auto; text-align:center;" >';
|
|
if ($test !== false ) echo '<input style="width:90%" type="text" name="idMail" maxlength="80" value="' .$idMail. '" >';
|
|
else echo '<input type="text" style="width:90%; margin:auto;" name="idMail" maxlength="80" value="" placeHolder="e-mail" >';
|
|
echo '</div>';
|
|
|
|
// ---------------------------------------------------
|
|
// bouton valider
|
|
// ---------------------------------------------------
|
|
echo '<div style="margin:auto; width:100%; grid-column:2; text-align:center; margin:10px;" >';
|
|
$action='onClick="controlerRappelMdp();"';
|
|
dynamiqItemImage (0, 1, 'boutons', 'div', $action, 'bouton', 5, 'icones', '-textClass-','text-align:center; margin:auto; width:100%;');
|
|
echo '</div>';
|
|
echo '</div>';
|
|
|
|
if ($idMail !='') {$_SESSION['idMail']=$idMail;}
|
|
?>
|