41 lines
2.0 KiB
PHP
41 lines
2.0 KiB
PHP
<?php
|
|
|
|
?>
|
|
|
|
<div class="col-12">
|
|
<table class="table table-responsive table-condensed" style='font-size:10pt;'>
|
|
<tbody>
|
|
<tr>
|
|
<td width="10%" align="center"> <?= _("Assureur") . " :"?> </td>
|
|
<td width="45%" align="center" style='font-weight: bold;'> <?= $this->nettoyer($_SESSION['p_nomSociete']) ?> </td>
|
|
|
|
<td align="center"> <input style='font-size:10pt;' type="button" class = "form-control btn btn-primary" value="<?= _("Envoyer à l'assureur") ?>" onClick="javascript:mettre_sms_commun_attente_assureur();"> </td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td align="center"> <?= _("Assuré") . " :" ?> </td>
|
|
<?php if ($_SESSION['p_numeroAdherent_C']>' ') : ?>
|
|
<td align="center" style='font-weight: bold;' > <?= $this->nettoyer($_SESSION['p_adherent_C']) . " (" . $this->nettoyer($_SESSION['p_numeroAdherent_C']) . ")" ?> </td>
|
|
<td align="center"> <input style='font-size:10pt;' type="button" class = "form-control btn btn-primary" value="<?= _("Envoyer à l'assuré") ?>" onClick="javascript:mettre_sms_commun_attente_assure();"> </td>
|
|
<?php else: ?>
|
|
<td align="center" style='font-weight: bold;' > <?= _("Veuillez sélectionner un assuré!") ?> </td>
|
|
<td align="center"> <input style='font-size:10pt;' type="button" class = "form-control btn btn-primary" value="<?= _("Envoyer à l'assuré") ?>" disabled > </td>
|
|
<?php endif; ?>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td align="center"> Message : </td>
|
|
<td colspan='2' > <textarea style='font-size:10pt; width:100%; font-weight: bold;' id ="textMessageCommun" name="textMessageCommun" rows="10" class="form-control-lg" required AUTOCOMPLETE="OFF" ></textarea> </td>
|
|
</tr>
|
|
|
|
<?php if ($_SESSION['p_numeroAdherent_C']>' ') : ?>
|
|
<tr>
|
|
<td> </td>
|
|
<td colspan='2' align="center"> <input style='font-size:10pt;' type="button" class = "form-control btn btn-primary" value="<?= _("Envoyer aux deux") ?>" onClick="javascript:mettre_sms_commun_attente_tous();"> </td>
|
|
</tr>
|
|
<?php endif; ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|