Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 975 → Rev 976

/kickup/trunk/webapp/participant/registered.jsp
0,0 → 1,38
<%@ 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-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>
 
<%@ include file="/header.jsp" %>
 
<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>
 
<p>Ваш регистрационный номер <span class="important"><bean:write name="participant" property="ident" /></span></p>
<p>Номер счета выслан на адрес <span class="important"><bean:write name="participant" property="email" /></span></p>
 
<%@ include file="/footer.jsp" %>
 
</body>
 
</html>