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
| <html>
<head>
<title>
Identification de l'utilisateur
</title>
<link rel = "stylesheet" type = "text/css" href = "mise_en_forme.css">
<script language = "javascript">
function verif(form)
{
if ((form.nom.value == "") || (form.motdepasse.value == ""))
alert("Saisissez les champs demandés.");
else form.submit();
}
</script>
</head>
<body class = "categorie1body">
<BR><BR><BR><BR>
<p align = center>
<FORM ACTION = "http://localhost/site/exploitationFormulaire.php" name = "formulaire">
Entrez votre nom (statut.nom):
<input type = "text" name = "nom" maxlength = 15>
<BR><BR>
Entrez votre mot de passe:
<input type = "password" name = "motdepasse" size = 8 maxlength = 8>
<BR><BR>
<Input type ="reset" name = "BoutonAnnuler" value = "Annuler">
<Input type = "button" name = "BoutonEZnvoyer" value = "Envoyer" onClick = "verif(this.form)">
</form>
</p>
</body>
</html> |
Partager