41 lines
1.4 KiB
PHP
Executable File
41 lines
1.4 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Vue : Texte libre sur CP
|
|
* Thème : Office/Document Editor
|
|
*/
|
|
$this->titre = "Tâches - Texte libre sur CP";
|
|
$numeroPolice = $this->nettoyer($_SESSION['numeroPolice_C']);
|
|
?>
|
|
|
|
<div id="div_texte_cp" class="container-fluid py-4">
|
|
|
|
<h1 class="text-primary"><i class="fas fa-edit me-2"></i></i></i> <?= _('Texte Libre') ?></h1>
|
|
|
|
<div class="card shadow-sm border-0">
|
|
<div class="card-header d-flex justify-content-between align-items-center py-3">
|
|
<h5 class="mb-0 fw-bold text-uppercase">
|
|
<?= _("Conditions Particulières") ?>
|
|
</h5>
|
|
<span class="badge bg-white text-dark shadow-sm">
|
|
<?= _("Police No") ?> : <?= $numeroPolice ?>
|
|
</span>
|
|
</div>
|
|
|
|
<div class="card-body p-4 bg-light">
|
|
<div class="mb-3">
|
|
<form method="POST" action="Textecp/enregistrer/">
|
|
<div class="editor-container shadow-sm mb-4">
|
|
<textarea
|
|
class="form-control editor-paper"
|
|
id="texteCp"
|
|
name="texteCp"
|
|
rows="18"
|
|
placeholder=""
|
|
disabled
|
|
><?= $this->nettoyer($textecp['texteCp']) ?></textarea>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|