13 lines
537 B
PHP
Executable File
13 lines
537 B
PHP
Executable File
<div id="div_unicite_login">
|
|
<input type="hidden" id="uniciteLogin" name="uniciteLogin" value="<?= $uniciteLogin ?>">
|
|
|
|
<?php if (isset($msgErreur) && $msgErreur != ""): ?>
|
|
<div class="animate__animated animate__shakeX border-start border-danger border-3 p-2 bg-danger-light text-danger small mb-3">
|
|
<i class="fas fa-exclamation-triangle me-2"></i> <?= $msgErreur ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
|
|
<style>
|
|
.bg-danger-light { background-color: rgba(220, 53, 69, 0.08); }
|
|
</style>
|