j'ai une page login.jsp suivant
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
| <%@ taglib prefix='c' uri='http://java.sun.com/jstl/core'%>
<html>
<head>
<script>
if (parent.document.getElementById("mainIFrame"))
{
parent.location.href = "/login.jsp"
}
</script>
<title>Login</title>
<link rel="stylesheet" type="text/css"
href="<%=request.getContextPath()
+ "/css/stylesheet-login.css"%>"
title="Login" />
</head>
<body>
<div id="tudo">
<div id="conteudo">
<div class="textTop">
<img border="0" src="admin/images/user.gif"><span class="connexion">connexion</span><span class="gpa">G.P.A</span>
</div>
<form action="j_security_check" method="POST">
<table align="center">
<tr>
<td>
Login
:
<input type="text" name="j_username">
</td>
</tr>
<tr></tr>
<tr></tr>
<tr></tr>
<tr></tr>
<tr></tr>
<tr align="center">
<td>
Mot De Passe :
<input type="password" size="21" name="j_password">
</td>
</tr>
<tr></tr>
<tr></tr>
<tr></tr>
<tr></tr>
<tr></tr>
<tr align="center">
<td colspan='2'>
<input type="submit" value="Valider">
<br>
<br>
</td>
</tr>
</table>
</form>
</div>
</div>
</body>
</html> |
cette page se trouve dans webroot de mon application dont se trouve aussi le repertoire "admin" qui contient le repertoire "images"
le probleme est que l'image
<img border="0" src="admin/images/user.gif">
ne s'affiche pas dans ma page web.
merci d'avance
Partager