46 lines
1.4 KiB
PHP
Executable File
46 lines
1.4 KiB
PHP
Executable File
<?php
|
|
$this->titre = "INTER-SANTE - Gestion Messagerie";
|
|
?>
|
|
|
|
<table class="table table-responsive table-condensed" style='font-size:10pt;'>
|
|
<tbody>
|
|
<tr>
|
|
<td width="10%" > <?= _("Type Prestataire") ?> </td>
|
|
<td colspan="3">
|
|
<SELECT onChange="ajax_liste_prestataires_messagerie();" class="form-control" id="codeTypePrestataire" NAME="codeTypePrestataire" style='font-size:10pt;'>
|
|
<?php liste_options($typeprestataire, ""); ?>
|
|
</SELECT>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td> <?= _("Objet") ?> </td>
|
|
<td colspan="3">
|
|
<input type="text" id ="objet" name="objet" class="form-control" style='font-size:10pt;' >
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Message</td>
|
|
<td colspan="3"> <textarea style='font-size:10pt;' id ="textMessageCommun" name="textMessageCommun" rows="5" class="form-control" required AUTOCOMPLETE="OFF" ></textarea> </td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td></td>
|
|
<td align="center"> <input style='font-size:10pt;' type="button" class = "form-control btn btn-primary" value="<?= _("Envoyer") ?>" onClick="javascript:enregistrer_message_commun();"> </td>
|
|
|
|
<td></td>
|
|
<td> <input style='font-size:10pt;' class = "form-control btn btn-warning" type="button" value="<?= _("Annuler") ?>" onClick='javascript:gerer_messagerie();'/> </td>
|
|
</tr>
|
|
|
|
</tbody>
|
|
</table>
|
|
|
|
<div id ="div_wait">
|
|
</div>
|
|
|
|
<div id="div_prestataires">
|
|
|
|
</div>
|
|
|
|
|