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
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
<head>
<script src="lib/prototype.js" type="text/javascript"></script>
<script src="src/scriptaculous.js" type="text/javascript"></script>
</head>
<body>
<form method="POST" action="../controleur/controleur_recherche_contact.php" name="recherche_contact">
<table border="1">
<caption>Recherche d\'un contacts</caption>
<tr>
<th>Nom : </th>
<td>
<input type="text" name="Nom" id='Nom'>
<div id='recherche_propositions'></div>
<script type='text/javascript' LANGUAGE='javascript'>
new Ajax.Autocompleter('Nom','recherche_propositions','auto_contact.php',{ paramName: 'text', minChars: 1 });
</script>
</td>
<td><a href="../Vue/formulaire_contact.php"> Créer un nouveau contact </td>
</tr>
<tr>
<th>Lancer la recherche</th>
<td><input type="submit" value="Rechercher"></td>
</tr>
</table>
</form>
</body>
</html> |