Boutton log in avec photo

Deadline Messages postés 112 Statut Membre -  
txiki Messages postés 6819 Date d'inscription   Statut Contributeur Dernière intervention   -
bonjour ca fais quelque jour que je cherche par moi meme commetn mettre une photo a la place du mo login dans un boutton pour un login et mot de pass alors je cherche comment remplacer le bouton gris pas un image d'aun autre bouton merci a l'avance
A voir également:

6 réponses

Deadline Messages postés 112 Statut Membre 8
 
personne sais comment faire ca
0
Zep3k!GnO Messages postés 2049 Statut Membre 200
 
Si si si :
<input type="image">
http://www.allhtml.com/html/html179.php?ret=index.php

Et pof !

Zep3k!GnO
0
nadia8 Messages postés 3 Statut Membre
 
ca marche pas je t'envoie ce que j'ai fait

<tr>
<form method="post" action="http://www.graphxmondo.net/forum/login.php">
<td width="778">
<table width="778" cellpadding="3" cellspacing="1" border="0" class="forumline" height="76">
<tr>
<td class="cat" width="770" height="69"> <div align="right">
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" width="21%" id="AutoNumber1" height="61">
<tr>
<td width="28%" height="22">
<input type=http://pages.infinit.net/wolf15/site/login>
<input class="post" type="text" name="username" size="12" /></td>
<td width="78%" rowspan="2" height="61"> <input type="submit" class="mainoption" name="login" value="Log in" /></td>
</tr>
<tr>
<td width="28%" height="38">
<input class="post" type="password" name="password" size="12" maxlength="32" /></td>
</tr>
</table>
</div>
</td>
</tr>
</tr>
</table>
</td>
</tr>
<tr>
<td width="780" colspan="2"><img border="0" src="12.jpg" width="780" height="77"></td>
</tr>
<tr>
<td width="780" colspan="2"><img border="0" src="14.jpg" width="508" height="316"><img border="0" src="13.jpg" width="272" height="316"></td>
</tr>
<tr>
<td width="780" colspan="2"><img border="0" src="15.jpg" width="780" height="49"></td>
</tr>
<tr>
<td width="778"></td>
<td width="1"></td>
</tr>
<tr>
<td width="778"></td>
<td width="1"></td>
</tr>
<tr>
<td width="778"></td>
<td width="1"></td>
</tr>
0
Deadline Messages postés 112 Statut Membre 8
 
ca marche pas je t'envoie ce que j'ai fait

<tr>
<form method="post" action="http://www.graphxmondo.net/forum/login.php">
<td width="778">
<table width="778" cellpadding="3" cellspacing="1" border="0" class="forumline" height="76">
<tr>
<td class="cat" width="770" height="69"> <div align="right">
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" width="21%" id="AutoNumber1" height="61">
<tr>
<td width="28%" height="22">
<input type=http://pages.infinit.net/wolf15/site/login>
<input class="post" type="text" name="username" size="12" /></td>
<td width="78%" rowspan="2" height="61"> <input type="submit" class="mainoption" name="login" value="Log in" /></td>
</tr>
<tr>
<td width="28%" height="38">
<input class="post" type="password" name="password" size="12" maxlength="32" /></td>
</tr>
</table>
</div>
</td>
</tr>
</tr>
</table>
</td>
</tr>
<tr>
<td width="780" colspan="2"><img border="0" src="12.jpg" width="780" height="77"></td>
</tr>
<tr>
<td width="780" colspan="2"><img border="0" src="14.jpg" width="508" height="316"><img border="0" src="13.jpg" width="272" height="316"></td>
</tr>
<tr>
<td width="780" colspan="2"><img border="0" src="15.jpg" width="780" height="49"></td>
</tr>
<tr>
<td width="778"></td>
<td width="1"></td>
</tr>
<tr>
<td width="778"></td>
<td width="1"></td>
</tr>
<tr>
<td width="778"></td>
<td width="1"></td>
</tr>
0

Vous n’avez pas trouvé la réponse que vous recherchez ?

Posez votre question
Zep3k!GnO Messages postés 2049 Statut Membre 200
 
C'est normal , regarde, tu as mis :
<input type=http://pages.infinit.net/wolf15/site/login>
type=http://pages.infinit.net/wolf15/site/login, ca ne marche pas, ce n'est pas un type reconnu pazr html ca :)

il faut :
<input type="image" src="./monDossier/monImage.jpg" value="TaValeurAssociée" name="MonImage">


Et la ca devrait aller mieux :)

Bon Courage.

Zep3k!GnO
0
txiki Messages postés 6819 Date d'inscription   Statut Contributeur Dernière intervention   524
 
Salut a tous,
Tu peux aussi appliquer un css au bouton !
ex:
.bouton { /* bouton formulaires colorés */
	background-color:#FEF9D6; 
	border: 1px solid #FF9900;
	font-size:1.1em; 
	cursor: pointer;
	height: 20px;
	}
puis dans ton input:
<input name="button" type="button" class="bouton"  value="OK" />
0