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 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
<body onload="focusModif('f:loginname');">
<f:view>
<div id="page">
<div id="header">
</div>
<div id="mainarea">
<div id="sidebar">
<div id="sidebarnav"><a class="active" href="#">Login</a></div>
</div>
<div id="contentarea">
<h:messages style="color: red" />
<table width="100%" cellpadding="2" cellspacing="0" class="tbmain">
<tr>
<td class="topleft" width="10" height="10"> </td>
<td class="topmid"> </td>
<td class="topright" width="10" height="10"> </td>
</tr>
<tr>
<td class="midleft" width="10"> </td>
<td class="midmid" valign="top">
<div id="main">
<div class="pagebreak">
<h:form id="f">
<table width="520" cellpadding="5" cellspacing="0">
<tr>
<td colspan="2" class="left"></td>
</tr>
<tr>
<td width="150" class="left"><h:outputText value="#{bundle.LABEL_LOGIN}"/></td>
<td class="right"><h:inputText id="loginname"
value="#{loginManagedBean.username}" styleClass="text" /></td>
</tr>
<tr>
<td width="150" class="left"><h:outputText value="#{bundle.LABEL_PASSWORD}"/></td>
<td class="right"><h:inputSecret id="password"
value="#{loginManagedBean.password}" styleClass="text" /></td>
</tr>
<tr>
<td width="150" class="left"> </td>
<td class="right"><h:commandButton value="Login"
action="#{loginManagedBean.login}" styleClass="loginBtn" /></td>
</tr>
</table>
</h:form>
</div>
</div>
</td>
<td class="midright" width="10"> </td>
</tr>
<tr>
<td class="bottomleft" width="10" height="10"> </td>
<td class="bottommid"> </td>
<td class="bottomright" width="10" height="10"> </td>
</tr>
</table>
</div>
</div>
<div id="footer">Designed by </a>,©2009
All Rights Reserved.</div>
</div>
</f:view>
</body> |
Partager