1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
| <div class="body">
<form action="traitement_formulaire2.php" method="post" id="sky-form" class="sky-form">
<header>Formulaire de saisie de la personne</header>
<!--id struct-->
<fieldset>
<div class="row">
<section class="col col-6">
<label class="input">
<i class="icon-append fa fa-user"></i>
<input type="text" name="id_struct" id="id_struct" VALUE="<?php echo $donnees['typologie']; }?>" disabled="disabled">
</label>
</section>
</div>
</fieldset>
<!---------------Contact 1------------------------->
<fieldset>
<div class="row">
<!--Nom contact 1-->
<section class="col col-6">
<label class="input">
<i class="icon-append fa fa-user"></i>
<input type="text" name="nom_pers" id="nom_pers" placeholder="Nom ">
</label>
</section>
<!--Prénom contact 1-->
<section class="col col-6">
<label class="input">
<i class="icon-append fa fa-user"></i>
<input type="text" name="prenom_pers" id="prenom_pers" placeholder="Prénom ">
</label>
</section>
</div>
<!--Fonction 1-->
<section>
<label class="input">
<input type="text" name="fct_pers" id="fct_pers" placeholder="Fonction ">
</label>
<i></i>
</section>
<div class="row">
<!--N° Mobile-->
<section class="col col-6">
<label class="input">
<i class="icon-append fa fa-phone"></i>
<input type="tel" name="tel_m" id="tel_m" placeholder="Téléphone mobile">
</label>
</section>
<!--N° Domicile-->
<section class="col col-6">
<label class="input">
<i class="icon-append fa fa-phone"></i>
<input type="tel" name="tel_d" id="tel_d" placeholder="Téléphone domicile">
</label>
</section>
</div>
<div class="row">
<!--N° Pro-->
<section class="col col-6">
<label class="input">
<i class="icon-append fa fa-phone"></i>
<input type="tel" name="tel_p" id="tel_p" placeholder="Téléphone bureau">
</label>
</section>
</div>
<div class="row">
<!--Mail-->
<section class="col col-6">
<label class="input">
<i class="icon-append fa fa-envelope-o"></i>
<input type="email" name="mail_pers" id="mail_pers" placeholder="Mail">
</label>
</section>
<!--Fax-->
<section class="col col-6">
<label class="input">
<i class="icon-append fa fa-phone"></i>
<input type="tel" name="fax_pers" id="fax_pers" placeholder="Fax">
</label>
</section>
</div>
<!--Description-->
<section>
<label class="label">Description du contact</label>
<label class="textarea">
<i class="icon-append fa fa-comment"></i>
<textarea rows="4" name="desc_pers" id="desc_pers"></textarea>
</label>
</section>
</fieldset>
<fieldset>
<!---------------------Ajout d'un nouveau contact ----------------->
<a href="">Ajouter</a>
</fieldset>
<footer>
<button type="submit" class="button" name="valider">Valider</button></a>
<a href="rlf2.php" class="button button-primary">Rechercher</a>
</footer> |
Partager