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
| <?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format">
<xsl:template match="/">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<title>
<xsl:value-of select="racine/fichier/title"/>
</title>
<link rel="stylesheet" media="screen" type="text/css" title="Style" href="stylelogin.css" />
</head>
<body>
<table align="center">
<tr>
<td><img src="images/logo.gif"/></td>
<td id="entete" style="background-color:#cccc"> </td>
</tr>
</table >
<br/> <br/> <br/> <br/>
<form id="form">
<table align="center" class="tableLogin">
<xsl:for-each select="racine/fichier/main/form/table/ligne">
<tr>
<td><xsl:value-of select="texte"/></td>
<xsl:if test=".[input='yes']">
<td><input type="text" id= "tit_id" name="tit_id" value="" /></td>
</xsl:if>
<td> <a href=""> <xsl:value-of select="link"/> </a></td>
</tr>
</xsl:for-each>
</table>
</form>
<br/> <br/> <br/> <br/>
<table align="center">
<tr>
<td><img src="images/logo.gif"/></td>
<td bgcolor="#ccccff" width="705" height="90"></td>
</tr>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet> |