Subversion Repositories general

Rev

Rev 19 | Rev 23 | Go to most recent revision | Blame | Compare with Previous | 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" %>
<%@ taglib uri="/WEB-INF/ak-strutsx.tld"       prefix="strutsx"  %>
<html>

<head>
        <meta http-equiv="expires" content="0">
        <title>Пьянка XP - <bean:write name="event" property="name" /> - Идентификация</title>
        <link rel="stylesheet" type="text/css" href="<strutsx:root />/style/general.css">
</head>

<body>

<h1>Пьянка XP - <bean:write name="event" property="name" /> - Идентификация</h1>

<strutsx:errorsIterator id="errors" />
<strutsx:notEmpty name="errors">
        <div class="error">Ошибки:
                <ul>
                <logic:iterate name="errors" id="error">
                        <li><strutsx:message name="error" property="key" valuesProperty="values" /></li>
                </logic:iterate>
                </ul>
        </div>
</strutsx:notEmpty>

<h2>Изменение данных регистрации</h2>

<html:form action="/participant/login" method="GET">
<backpath:current />
<input type=hidden name="event" value="<bean:write name="event" property="id" />">
<table border=1>
        <tr>
                <th>Ваш номер</th>
                <td><html:text property="ident" /></td>
    </tr>
        <tr>
                <td colspan=2><html:submit>Перейти к изменению</html:submit></td>
    </tr>
</table>
</html:form>

<h2>Отказ от регистрации</h2>

<logic:equal name="e" property="unregistrationAvailable" value="true">
        <html:form action="/participant/unregister">
        <backpath:current />
        <input type=hidden name="event" value="<bean:write name="event" property="id" />">
        <table border=1>
                <tr>
                        <th>Ваш номер</th>
                        <td><html:text property="ident" /></td>
            </tr>
                <tr>
                        <td colspan=2><html:submit>Я не еду</html:submit></td>
            </tr>
        </table>
        </html:form>
</logic:equal>
<logic:equal name="e" property="unregistrationAvailable" value="true">
        <p>Срок отказа от регистрации прошел.</p>
</logic:equal>

<backpath:notEmpty><backpath:backlink>Назад</backpath:backlink></backpath:notEmpty>

</body>

</html>