Subversion Repositories WebE

Rev

Rev 18 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 18 Rev 20
Line 1... Line 1...
1
<%@ page errorPage="ErrorHandler.jsp" %>
1
<%@taglib uri="/struts-tags" prefix="s"%>
2
<%@ include file="html_head.jsp" %>
2
<%@ page pageEncoding="UTF-8" %>
-
 
3
<html>
-
 
4
<head>
-
 
5
	<title>Login</title>
-
 
6
</head>
-
 
7
<body>
-
 
8
<div id="login">
-
 
9
	<h1>Login</h1>
3
10
4
	<%--  Only serves as a container for the different site elements!
11
	<s:form action="Login">
5
	Do not write any text directly into the container div! --%>
12
	<s:textfield name="userName" label="Benutzername" />
6
	
-
 
7
	<div id="page-container">
13
	<s:password name="pw" label="Passwort" />
8
        <div id="header">
14
	<s:submit />
9
            <%@ include file="header.jsp" %>
-
 
10
        </div>
15
	</s:form>
11
        
16
	<p>
12
        <%@ include file="login.jsp" %>        
17
		Klicken Sie <a href="index.jsp">hier</a> wenn Sie Ihr Passwort vergessen haben. 
13
    </div>
18
	</p>
14
	
19
</div>
15
</body>
20
</body>
16
</html>
21
</html>