Mise a jour de la structure HTML du formulaire de recherche
This commit is contained in:
parent
b5171cc8c8
commit
5c2eba2f5a
@ -10,69 +10,40 @@ foreach (array('dirNom',
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
<br/><br/><br/><br/><br/>
|
<div id="recherche">
|
||||||
|
|
||||||
|
<h2 align="center" class="StyleRechercheTitre">RECHERCHE PAR DIRIGEANT</h2>
|
||||||
|
|
||||||
<form name="form_recherche" action="./?page=recherche&action=rechercher&vue=list" method="post">
|
<form name="form_recherche" action="./?page=recherche&action=rechercher&vue=list" method="post">
|
||||||
<input type="hidden" name="formR[type]" value="dir"/>
|
<input type="hidden" name="formR[type]" value="dir"/>
|
||||||
<table cellpadding="0" cellspacing="0">
|
|
||||||
<tr>
|
|
||||||
<td valign="top" width="580" height="200" align="center">
|
|
||||||
|
|
||||||
<table>
|
<div class="fieldgrp">
|
||||||
<tr>
|
<label>NOM</label>
|
||||||
<td align="center">
|
<input type="text" name="formR[dirNom]" value="<?=$formR['dirNom']?>" size="25" maxlength="40" style="vertical-align:middle;" />
|
||||||
<h2 align="center" class="StyleRechercheTitre">RECHERCHE PAR DIRIGEANT</h2>
|
</div>
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<table>
|
<div class="fieldgrp marge">
|
||||||
<tr>
|
<label>PRENOM</label>
|
||||||
<td width="208" align="right" class="StyleRechercheLib"><b>NOM</b></td>
|
<input type="text" name="formR[dirPrenom]" value="<?=$formR['dirPrenom']?>" size="25" maxlength="40" />
|
||||||
<td width="300" align="left">
|
</div>
|
||||||
<input type="text" name="formR[dirNom]" value="<?=$formR['dirNom']?>" size="25" maxlength="40" style="vertical-align:middle;" />
|
|
||||||
</td>
|
|
||||||
<td width="72"> </td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td width="208" align="right" class="StyleRechercheLib"><b>PRENOM</b></td>
|
|
||||||
<td width="300" align="left">
|
|
||||||
<input type="text" name="formR[dirPrenom]" value="<?=$formR['dirPrenom']?>" size="25" maxlength="40" /></td>
|
|
||||||
<td width="72"> </td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
<br/>
|
|
||||||
<table>
|
|
||||||
<tr>
|
|
||||||
<td width="208" align="right" class="StyleRechercheLib"><b>DATE NAISSANCE</b></td>
|
|
||||||
<td width="300" align="left" class="StyleRechercheLib">
|
|
||||||
<input maxLength="2" size="2" name="formR[dirDateNaissJJ]" value="<?=$formR['dirDateNaissJJ']?>" /> /
|
|
||||||
<input maxLength="2" size="2" name="formR[dirDateNaissMM]" value="<?=$formR['dirDateNaissMM']?>" /> /
|
|
||||||
<input maxLength="4" size="4" name="formR[dirDateNaissAAAA]" value="<?=$formR['dirDateNaissAAAA']?>" /></td>
|
|
||||||
<td width="72"> </td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td width="208" align="right" class="StyleRechercheLib"><b>CP OU DÉP. / VILLE DE NAISSANCE</b></td>
|
|
||||||
<td width="300" align="left"><input type="text" name="formR[dirCpVille]" value="<?=$formR['dirCpVille']?>" size="25" maxlength="40" /></td>
|
|
||||||
<td width="72"> </td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<table width="580">
|
<div class="fieldgrp">
|
||||||
<tr>
|
<label>DATE NAISSANCE</label>
|
||||||
<td width="208"> </td>
|
<input maxLength="2" size="2" name="formR[dirDateNaissJJ]" value="<?=$formR['dirDateNaissJJ']?>" /> /
|
||||||
<td width="176" align="center" valign="top">
|
<input maxLength="2" size="2" name="formR[dirDateNaissMM]" value="<?=$formR['dirDateNaissMM']?>" /> /
|
||||||
<input class="button" type="submit" name="submit" value="Recherche" title="Lancer la recherche..." />
|
<input maxLength="4" size="4" name="formR[dirDateNaissAAAA]" value="<?=$formR['dirDateNaissAAAA']?>" />
|
||||||
</td>
|
</div>
|
||||||
<td valign="top">
|
|
||||||
<input class="button" type="reset" name="reset" value="RàZ" title="Remise à zéro" />
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
|
<div class="fieldgrp">
|
||||||
|
<label>CP OU DÉP. / VILLE DE NAISSANCE</label>
|
||||||
|
<input type="text" name="formR[dirCpVille]" value="<?=$formR['dirCpVille']?>" size="25" maxlength="40" />
|
||||||
|
</div>
|
||||||
|
|
||||||
</td>
|
<div class="submit">
|
||||||
</tr>
|
<input class="button" type="submit" name="submit" value="Recherche" title="Lancer la recherche..." />
|
||||||
</table>
|
<input class="button" type="reset" name="reset" value="RàZ" title="Remise à zéro" />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</form>
|
||||||
|
|
||||||
</form>
|
</div>
|
@ -13,11 +13,11 @@ foreach (array('siret',
|
|||||||
?>
|
?>
|
||||||
<div id="recherche">
|
<div id="recherche">
|
||||||
|
|
||||||
|
<h2 align="center" class="StyleRechercheTitre">RECHERCHE ENTREPRISE</h2>
|
||||||
|
|
||||||
<form name="form_recherche" id="formR-id" action="./?page=recherche&action=rechercher&vue=list" method="post">
|
<form name="form_recherche" id="formR-id" action="./?page=recherche&action=rechercher&vue=list" method="post">
|
||||||
<input type="hidden" name="formR[type]" value="ent" />
|
<input type="hidden" name="formR[type]" value="ent" />
|
||||||
|
|
||||||
<h2 align="center" class="StyleRechercheTitre">RECHERCHE ENTREPRISE</h2>
|
|
||||||
|
|
||||||
<div class="fieldgrp">
|
<div class="fieldgrp">
|
||||||
<label>SIREN</label>
|
<label>SIREN</label>
|
||||||
<input type="text" name="formR[siret]" value="<?=$formR['siret']?>" size="30" maxlength="20" style="vertical-align:middle;" />
|
<input type="text" name="formR[siret]" value="<?=$formR['siret']?>" size="30" maxlength="20" style="vertical-align:middle;" />
|
||||||
|
Loading…
x
Reference in New Issue
Block a user