Project

General

Profile

1
<%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
2
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
3
<%@ taglib prefix="s" uri="/struts-tags"%>
4
<html>
5
<head>
6
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7
<title><s:text name="forgotPassword.title"/></title>
8
<link href="jsps/favicon.ico" rel="shortcut icon" type="image/x-icon" />
9
<link href="jsps/style.css" rel="stylesheet" type="text/css" media="screen" />
10
</head>
11
<body>
12
<div id="wrapper">
13
	<jsp:include page="menu.jsp"/>
14
	<div id="page">
15
        <div id="page-bgtop">
16
             <div id="middle">
17
                <div class="middle-b">
18
                    <div class="background">
19
                        <div id="main">
20
                            <div id="main_container" class="clearfix">
21
                                <div id="mainmiddle" class="floatbox">
22
                                    <h1>Reset your password</h1>
23
                                    <s:actionerror/>
24
                                    <s:form action="sendPassword">
25
                                        <s:textfield name="email" key="registration.email"/>
26
                                        <s:submit/>
27
                                    </s:form>
28
                                    <s:text name="forgotPassword.message"/>
29
                                </div>
30
                            </div>
31
                        </div>
32
                    </div>
33
                </div>
34
            </div>
35
        </div>
36
        <!-- NMI This needs to be the same in all pages and the text is some properties file -->
37
        <div id="footer"> 
38
           <jsp:include page="footer.jsp"/>
39
        </div>
40
	</div>
41
</div>
42
</body>
43
</html>
(23-23/47)