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
| <!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.0 Transitional//EN' 'http://www.w3.org/TR/html4/loose.dtd'>
<html>
<body>
<form name='inscription' method='post'>
<p class='titre'>Identifiants</p>
<fieldset id="Formulaire">
<table style='margin-left: 30%'>
<tr>
<th><label for'lebelle_prenom'>Pseudonyme:
</label></th>
<td><input type='text' name='Pseudonyme'></td>
</tr>
</table>
</fieldset>
<p class='titre'>Informations personnelles</p>
<fieldset id="Formulaire">
<table style='margin-left: 30%'>
<tr>
<th><label for'lebelle_prenom'>Prénom:
</label></th>
<td><input type='text' name='prenom'></td>
</tr>
</table>
</fieldset>
<input type='submit' value='Soumettre' onclick='validation_inscription()'>
<input type='reset' value='Effacer'>
</form>
<script language='javascript'>
function validation_inscription()
{
document.forms['inscription'].action='http://192.168.1.108/syteo/utilisateur.php?UTIL_LOGIN=document.forms['inscription'].elements['pseudonyme'].value';
document.forms['inscription'].submit();
document.forms['inscription'].action='http://192.168.1.108/syteo/personne.php?PERS_PRENOM=document.forms['inscription'].elements['prenom'].value';
document.forms['inscription'].submit();
}
</script>
</body>
</html> |
Partager