Bonjour a tous,
J'ai besoin d'aide a propos de mon formulaire de connexion. je voudrais le rendre plus convivial , beau, plus dynamique.
Voici un apercu de mon formulaire:
Pièce jointe 185224
Voici le code source :
Merci a vous !
Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64 <?php include ('election.php'); $requete="SELECT * FROM utilisateur"; $resultat=mysql_query($requete); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Untitled Document</title> <style type="text/css"> <!-- body { background-image: url(); background-repeat: no-repeat; background-color: #0033FF; } body,td,th { color: #FFFFFF; } --> </style></head> <body> <div align="center"></div> <form id="form1" name="form1" method="post" action="validation.php"> <div align="center"> <table width="400" border="2"> <tr> <td colspan="2">Veuillez vous identifier </td> </tr> <tr> <td width="97">Login</td> <td width="285"><label> <input name="login" type="text" id="login" /> </label></td> </tr> <tr> <td>Mot de passe </td> <td><label> <input name="passwd" type="text" id="passwd" /> </label></td> </tr> <tr> <td>Type</td> <td><label> <select name="type" id="type"> <option>Faites votre choix</option> <option value="administrateur">administrateur</option> <option value="Etudiant">Etudiant</option> <option value="Enseignant">Enseignant</option> </select> </label></td> </tr> <tr> <td><input name="btn_id" type="submit" id="btn_id" value="Valider" /></td> <td> </td> </tr> </table> </div> </form> <p align="center"> </p> </body> </html>
Partager