38 lines
1.5 KiB
PHP
Executable File
38 lines
1.5 KiB
PHP
Executable File
<?php
|
|
$indicatifTelephone = $_SESSION['indicatifTelephone'];
|
|
?>
|
|
|
|
<div class="col-12">
|
|
<table class="table table-responsive table-condensed" style='font-size:10pt;'>
|
|
<tbody>
|
|
<tr>
|
|
<td width="10%" > <?= _("Destinataires") ?> </td>
|
|
|
|
<td width="15%" >
|
|
<SELECT onChange="ajax_init_destinataires_sms();" class="form-select" id="codeTypeDestinataire" NAME="codeTypeDestinataire" style='font-size:10pt;'>
|
|
<?php liste_options($typedestinatairesms, ""); ?>
|
|
</SELECT>
|
|
</td>
|
|
|
|
<td> <input class="form-control" style="text-align: center; font-size:10pt; background-color: yellow;" type="text" value="<?= _('Les No doivent être de la forme').' '.$indicatifTelephone.'+'._('No Local').' => '._('Séparateur = virgule').' => '._('Exemple').' : '.$indicatifTelephone.'No1,'.$indicatifTelephone.'No2,'.$indicatifTelephone.'N3' ?>" readonly>
|
|
|
|
<td width="10%" > <input style='font-size:10pt;' class = "form-control btn btn-warning" type="button" value="<?= _("Ré-initialiser...") ?>" onClick='javascript:re_init_envoi_sms();'/> </td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
<td> Message </td>
|
|
<td colspan="3"> <textarea style='font-size:10pt; width:100%' id ="textMessageCommun" name="textMessageCommun" rows="10" class="form-control-lg" required AUTOCOMPLETE="OFF" ></textarea> </td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<div id="div_destinataire">
|
|
<div id="div_adherent_destinataire">
|
|
</div>
|
|
|
|
<div id="div_destinataire_final">
|
|
</div>
|
|
</div>
|