Rev 27 | Go to most recent revision | Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
19 | dev | 1 | <%@ page contentType="text/html;charset=UTF-8" language="java" %> |
2 | <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %> |
||
3 | <%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %> |
||
4 | <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %> |
||
5 | <%@ taglib uri="/WEB-INF/ak-backpath.tld" prefix="backpath" %> |
||
6 | <%@ taglib uri="/WEB-INF/ak-strutsx.tld" prefix="strutsx" %> |
||
7 | <html> |
||
8 | |||
9 | <head> |
||
10 | <meta http-equiv="expires" content="0"> |
||
11 | <title>Пьянка XP - <bean:write name="event" property="name" /> - Регистрация</title> |
||
12 | <link rel="stylesheet" type="text/css" href="<strutsx:root />/style/general.css"> |
||
13 | </head> |
||
14 | |||
15 | <body> |
||
16 | |||
17 | <h1>Пьянка XP - <bean:write name="event" property="name" /> - Регистрация</h1> |
||
18 | |||
19 | <strutsx:errorsIterator id="errors" /> |
||
20 | <strutsx:notEmpty name="errors"> |
||
21 | <div class="error">Ошибки: |
||
22 | <ul> |
||
23 | <logic:iterate name="errors" id="error"> |
||
24 | <li><strutsx:message name="error" property="key" valuesProperty="values" /></li> |
||
25 | </logic:iterate> |
||
26 | </ul> |
||
27 | </div> |
||
28 | </strutsx:notEmpty> |
||
29 | |||
30 | <html:form action="/participant/submit"> |
||
31 | <backpath:current /> |
||
32 | <html:hidden property="event" /> |
||
33 | |||
34 | <table border=1> |
||
35 | <tr> |
||
36 | <th>Ник на форуме</th> |
||
37 | <td><html:text property="nick" /></td> |
||
38 | </tr> |
||
39 | <tr> |
||
40 | <th>Ваш e-mail</th> |
||
41 | <td><html:text property="email" /></td> |
||
42 | </tr> |
||
43 | <tr> |
||
44 | <th>Разрешить показ e-mail'а</th> |
||
45 | <td colspan=3><html:checkbox property="emailPublic" /></td> |
||
46 | </tr> |
||
47 | <tr> |
||
48 | <th>Сколько вас</th> |
||
49 | <td><html:text property="persons" /></td> |
||
50 | </tr> |
||
51 | |||
52 | <tr> |
||
53 | <th>Выезд из PLZ</th> |
||
54 | <td><html:text property="fromZip" /></td> |
||
55 | </tr> |
||
56 | <tr> |
||
57 | <th>Выезд из города</th> |
||
58 | <td><html:text property="fromCity" /></td> |
||
59 | </tr> |
||
60 | <tr> |
||
61 | <th>Время отправления</th> |
||
62 | <td><html:text property="departure" /></td> |
||
63 | </tr> |
||
64 | <tr> |
||
65 | <th>Свободных мест в машине</th> |
||
66 | <td><html:text property="freeTransport" /></td> |
||
67 | </tr> |
||
68 | <tr> |
||
69 | <th>Условия транспортировки</th> |
||
70 | <td><html:textarea property="transportComment" /></td> |
||
71 | </tr> |
||
72 | |||
73 | <tr> |
||
74 | <th>Свободных спальных мест</th> |
||
75 | <td><html:text property="freeSleep" /></td> |
||
76 | </tr> |
||
77 | <tr> |
||
78 | <th>Условия ночевки</th> |
||
79 | <td><html:textarea property="sleepComment" /></td> |
||
80 | </tr> |
||
81 | |||
82 | <tr> |
||
83 | <th>Ваше имя</th> |
||
84 | <td><html:text property="name" /></td> |
||
85 | </tr> |
||
86 | <tr> |
||
87 | <th>Телефон</th> |
||
88 | <td><html:text property="phone" /></td> |
||
89 | </tr> |
||
90 | <tr> |
||
91 | <th>Дополнительная информация</th> |
||
92 | <td><html:textarea property="comment" /></td> |
||
93 | </tr> |
||
94 | |||
95 | <tr> |
||
96 | <td colspan=2> |
||
97 | <html:submit>Зарегистрироваться</html:submit> |
||
98 | <backpath:notEmpty><backpath:backlink>Отменить</backpath:backlink></backpath:notEmpty> |
||
99 | </td> |
||
100 | </tr> |
||
101 | </table> |
||
102 | |||
103 | </html:form> |
||
104 | |||
105 | </body> |
||
106 | |||
107 | </html> |