mirror of
https://github.com/apache/struts.git
synced 2026-08-31 19:35:40 +00:00
266a553f5d
Reverted the license headers in sample apps code. I left only in pom.xml files and in Java code. git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/trunk@564339 13f79535-47bb-0310-9956-ffa450edef68
31 lines
892 B
Plaintext
31 lines
892 B
Plaintext
<%@ page contentType="text/html; charset=UTF-8" %>
|
|
<%@ taglib uri="/struts-tags" prefix="s" %>
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
<head>
|
|
<title><s:text name="login.title"/></title>
|
|
<link href="<s:url value="/css/mailreader.css"/>" rel="stylesheet"
|
|
type="text/css"/>
|
|
</head>
|
|
|
|
<body onLoad="self.focus();document.Login.username.focus()">
|
|
|
|
<s:actionerror />
|
|
<s:form action="Login" validate="true">
|
|
<s:textfield key="username" />
|
|
|
|
<s:password key="password" showPassword="true"/>
|
|
|
|
<s:submit key="button.logon"/>
|
|
|
|
<s:reset key="button.reset"/>
|
|
|
|
<s:submit action="Login_cancel" key="button.cancel"
|
|
onclick="form.onsubmit=null"/>
|
|
</s:form>
|
|
|
|
<jsp:include page="Footer.jsp"/>
|
|
</body>
|
|
</html>
|