16 lines
494 B
HTML
16 lines
494 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="fr">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>Modifier un numero de poste</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<form method="post" action="modifier.php">
|
||
|
<label>Nom </label><input id="nom" type="text" name="nom" ><br/>
|
||
|
<label>Prenom</label><input id="prenom" type="text" name="prenom" ><br/>
|
||
|
<label>Nouveau numéro de poste</label><input id="numpost" type="text" name="numpost" ><br/>
|
||
|
<input type="submit" name="submit">
|
||
|
|
||
|
</form>
|
||
|
</body>
|
||
|
</html>
|