root/trunk/calendar3/webclient/war/docs/emailOptions.jsp

Revision 292 (checked in by johnsa, 7 years ago)

Updates to personal client jsp to bring the event xml much more in line with the admin client (particularly in the data and time components). This could be taken further.

Mass cleanup of jsp code, including addition of xhtml output tag to produce better form elements.

Moved "add event" page in public client to be up-to-date with current date and time components; still need to fix up widgets.

Line 
1 <%@ taglib uri='struts-bean' prefix='bean' %>
2 <%@ taglib uri='struts-logic' prefix='logic' %>
3 <%@ taglib uri='struts-html' prefix='html' %>
4 <%@ taglib uri='struts-genurl' prefix='genurl' %>
5 <html:xhtml/>
6
7 <%@ include file="header.jsp" %>
8
9 <%
10 try {
11 %>
12
13 <page>emailOptions</page>
14
15 <emailoptionsform>
16   <genurl:form action="mailEvent">
17     <email><html:text name="calForm" property="lastEmail"/></input></email>
18     <subject><html:text name="calForm" property="lastSubject" /></input></subject>
19   </genurl:form>
20 </emailoptionsform>
21
22 <%
23 } catch (Throwable t) {
24   t.printStackTrace();
25 }
26 %>
27
28 <%@ include file="footer.jsp" %>
29
Note: See TracBrowser for help on using the browser.