14 lines
604 B
PHP
14 lines
604 B
PHP
<?php
|
|
|
|
?>
|
|
|
|
<div class="wrap-input100 validate-input" data-validate="Enter username">
|
|
<?php if($_SESSION['p_lang']=="en_US"): ?>
|
|
<label for="login">Login</label>
|
|
<input class="input100" type="text" name="login" id="login" value="<?= $codeUtilisateur ?>" placeholder="Login" style="text-align:center;" required AUTOCOMPLETE="off">
|
|
<?php else: ?>
|
|
<label for="login">Identifiant</label>
|
|
<input class="input100" type="text" name="login" id="login" value="<?= $codeUtilisateur ?>" placeholder="Identifiant" style="text-align:center;" required AUTOCOMPLETE="off">
|
|
<?php endif; ?>
|
|
</div>
|