source: ether_megapoli/trunk/web/data/logon.jsp @ 161

Last change on this file since 161 was 161, checked in by vmipsl, 13 years ago

Import medias files and cleanup

File size: 1.8 KB
Line 
1<%@ page import="com.medias.Context" contentType="text/html; charset=UTF-8"%>
2<%@ page language="java" contentType="text/html; charset=UTF-8"%>
3<%@ taglib uri="/WEB-INF/tlds/struts-tiles.tld" prefix="tiles"%>
4<%@ taglib uri="/WEB-INF/tlds/struts-html.tld" prefix="html"%>
5<%@ taglib uri="/WEB-INF/tlds/struts-bean.tld" prefix="bean"%>
6<%@ taglib uri="/WEB-INF/tlds/struts-logic.tld" prefix="logic"%>
7<%@ taglib uri="/WEB-INF/tlds/struts-nested.tld" prefix="nested"%>
8
9<tiles:insert page="/resources/templates/template.jsp" flush="true">
10
11        <bean:define type="java.lang.String" id="relativePath" value="<%=Context.getRelativePath(request)%>"/>
12
13        <tiles:put name="nav" value='<%=relativePath+"/nav.jsp"%>'/>
14
15        <tiles:put name="title" type="string">
16                <bean:message key="app.title"/> - <bean:message key="data.authentification"/>
17        </tiles:put>
18
19        <tiles:put name="bodytitle" type="string">
20                <bean:message key="data.authentification"/>
21        </tiles:put>
22
23        <tiles:put name="body" type="string">
24                <bean:message key="data.authentification.intro"/>
25                <div id="errors"><html:errors/></div>
26                <hr/>
27                <div id="login">
28                        <html:form action="/Logon">
29                                <table>
30                                        <tr>
31                                                <td><bean:message key="data.authentification.login"/> : </td>
32                                                <td><html:text property="login"/></td>
33<%--                                            <td>&nbsp;</td> --%>
34                                        </tr>
35                                        <tr>
36                                                <td><bean:message key="data.authentification.pwd"/> : </td>
37                                                <td><html:password property="pwd"/></td>
38<%--                                            <td>&nbsp;</td> --%>
39                                        </tr>
40                                        <tr>
41<%--                                            <td>&nbsp;</td> --%>
42                                                <td>&nbsp;</td>
43                                                <td align="right">
44                                                        <html:submit><bean:message key="app.submit"/></html:submit>
45                                                        <html:cancel><bean:message key="app.cancel"/></html:cancel>
46                                                </td>                                           
47                                        </tr>
48                                </table>
49                        </html:form>
50                </div>
51        </tiles:put>
52 </tiles:insert>
Note: See TracBrowser for help on using the repository browser.