production/Vue/Paramreinitmotpass/majcomplexitepassword.php
2025-12-01 16:12:12 +00:00

48 lines
1.6 KiB
PHP
Executable File

<div class="row">
<div id="div_expression_non_actif" class="col-6" >
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style="font-size:10pt;">
<thead>
<tr>
<th style='text-align:center'> <?= _("Expressions Non Actives") ?> </th>
<th style='text-align:center'> => </th>
</tr>
</thead>
<tbody>
<?php foreach ($expressionsinactives as $expressionsinactive):
$idExpression = $expressionsinactive['code'];
?>
<tr valign="top">
<td align='center'><?= $this->nettoyer($expressionsinactive['libelle']) ?></td>
<td align='center'> <input type="button" value="=>" onClick="javascript:ajouter_une_expression_complexite_pass('<?=$idExpression?>', '1');" ></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>
<div id="div_expression_actif" class="col-6" >
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style="font-size:10pt;">
<thead>
<tr>
<th style='text-align:center'> <= </th>
<th style='text-align:center'> <?= _("Expressions Actives") ?> </th>
</tr>
</thead>
<tbody>
<?php foreach ($expressionsactives as $expressionsactive):
$idExpression = $expressionsactive['code'];
?>
<tr valign="top">
<td align='center'> <input type="button" value="<=" onClick="javascript:ajouter_une_expression_complexite_pass('<?=$idExpression?>', '0');" ></td>
<td align='center'><?= $this->nettoyer($expressionsactive['libelle']) ?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>
</div>