Import initial du projet Production
This commit is contained in:
36
Vue/Ajouterprofil/index.php
Executable file
36
Vue/Ajouterprofil/index.php
Executable file
@@ -0,0 +1,36 @@
|
||||
<?php $this->titre = "INTER SANTE - Ajouter Profil"; ?>
|
||||
|
||||
|
||||
<form method="post" action="Ajouterprofil/ajouter">
|
||||
<fieldset>
|
||||
<legend> <?= _("Profil à ajouter") ?> </legend>
|
||||
<table class="table table-responsive table-condensed">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td width="10%" >Code</td>
|
||||
<td width="30%" ><INPUT class="form-control" TYPE="text" id="codeProfil" NAME="codeProfil" required AUTOCOMPLETE="OFF" autofocus></td>
|
||||
|
||||
<td width="5%" > <?= _("Libellé") ?> </td>
|
||||
<td><INPUT class="form-control" TYPE="text" id="libelle" NAME="libelle" required AUTOCOMPLETE="OFF" ></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td> <?= _("Profil Système") ?> </td>
|
||||
<td>
|
||||
<select class="form-select" id="codeProfilSysteme" NAME="codeProfilSysteme" required AUTOCOMPLETE="OFF">
|
||||
<?php liste_options($profilsysteme,""); ?>
|
||||
</SELECT>
|
||||
</td>
|
||||
<td></td>
|
||||
<td><input class = "form-control btn btn-primary" type="submit" value="<?= _("Enregistrer") ?>" /></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</fieldset>
|
||||
</form>
|
||||
|
||||
<?php if (isset($msgErreur)): ?>
|
||||
<div class="alert alert-danger" style="height:30px; padding:5px;" >
|
||||
<H4><?= $msgErreur ?></H4>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
Reference in New Issue
Block a user