29 lines
1.5 KiB
PHP
Executable File
29 lines
1.5 KiB
PHP
Executable File
<div id="div_messagerie_reponse">
|
|
<INPUT class="sr-only" TYPE="text" id="idMessagerie" NAME="idMessagerie" value="<?= $this->nettoyer($message_reponse['idMessagerie']) ?>">
|
|
<INPUT class="sr-only" TYPE="text" id="idParentReponse" NAME="idParentReponse" value="<?= $this->nettoyer($message_reponse['idParentReponse']) ?>">
|
|
<INPUT class="sr-only" TYPE="text" id="repondu" NAME="repondu" value="<?= $this->nettoyer($message_reponse['repondu']) ?>">
|
|
|
|
<table class="table table-responsive table-condensed" style='font-size:10pt;' >
|
|
<tbody>
|
|
<tr>
|
|
<td width="10%">Message</td>
|
|
<td colspan="3"> <textarea style='font-size:10pt;' rows="10" class="form-control" readonly ><?=$this->nettoyer($message_reponse['textMessage']) ?></textarea> </td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td width="10%"><?= _('Réponse') ?> </td>
|
|
<td colspan="3"> <textarea style='font-size:10pt;' id ="textMessageReponse" name="textMessageReponse" rows="10" 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="<?= _("Enregistrer") ?>" onClick="javascript:enregistrer_repondre_message();"> </td>
|
|
|
|
<td></td>
|
|
<td> <input style='font-size:10pt;' class = "form-control btn btn-warning" type="button" value="<?= _("Annuler") ?>" onClick='javascript:$("#btn_pop_messagerie_reponse_quit").click();'/> </td>
|
|
</tr>
|
|
|
|
</tbody>
|
|
</table>
|
|
</div>
|