Subversion Repositories general

Rev

Go to most recent revision | Blame | Last modification | View Log | RSS feed

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@ taglib uri="/WEB-INF/struts-bean.tld"  prefix="bean"     %>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic"    %>
<%@ taglib uri="/WEB-INF/struts-html.tld"  prefix="html"     %>
<%@ taglib uri="/WEB-INF/ak-backpath.tld"  prefix="backpath" %>
<html>

<head>
        <meta http-equiv="expires" content="0">
        <title><bean:message key="ak.webcontrol.page.system.login.title" /></title>
</head>

<body>

<h1><bean:message key="ak.webcontrol.page.system.login.title" /></h1>

<html:errors/>

<html:form action="/system/login/submit" focus="username">
<backpath:current />
<table border="0">
    <tr>
        <th class="right">
            <bean:message key="ak.webcontrol.page.system.login.login" />
        </th>
        <td class="left">
            <html:text property="login" size="16"/>
        </td>
    </tr>
    <tr>
        <th class="right">
            <bean:message key="ak.webcontrol.page.system.login.password" />
        </th>
        <td class="left">
            <html:password property="password" size="16" redisplay="false" />
        </td>
    </tr>
    <tr>
        <td class="right">
            <html:submit>
                <bean:message key="ak.webcontrol.page.system.login.submit" />
            </html:submit>
        </td>
        <td class="right">
            <html:reset>
                <bean:message key="ak.webcontrol.page.system.login.reset" />
            </html:reset>
        </td>
    </tr>
</table>
</html:form>

</body>

</html>