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
|
<!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>
<title>Bienvenue sur le site de demande d'intervention</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<body>
<?php
include("connexion.php");
<div class="corps"><h2 class="sidebar-title">Identification</h2><br />
<i>Bienvenue, veuillez entrer votre nom et votre mot de passe pour vous connecter.</i><br /><br />
<div style="padding-left:40px;">
<form action="formulaire.php" method="post">
<b>Nom</b>:<br />
<input type="text" name="nom" value=""/> <input class="h" type="submit" name="ok" value="Se connecter"/><br />
<b>Password</b>:<br />
<input type="password" name="pass" value="password"/><br />
</form>
</div>
<br />
<br />
</div>
include("deconnexion.php");
?>
</body>
</html> |
Partager