|
From: <pe...@us...> - 2003-12-16 15:04:34
|
Update of /cvsroot/neuclear/neuclear-id-sample/src/webapp
In directory sc8-pr-cvs1:/tmp/cvs-serv10622/src/webapp
Modified Files:
index.jsp
Log Message:
Added SignedMessage contract for signing simple textual contracts.
Added NeuSender, updated SmtpSender and Sender to take plain email addresses (without the mailto:)
Added AbstractObjectCreationTest to make it quicker to write unit tests to verify
NamedObjectBuilder/SignedNamedObject Pairs.
Sample application has been expanded with a basic email application.
Updated docs for sample web app.
Added missing LGPL LICENSE.txt files to signer and sample app
Index: index.jsp
===================================================================
RCS file: /cvsroot/neuclear/neuclear-id-sample/src/webapp/index.jsp,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** index.jsp 14 Dec 2003 21:33:11 -0000 1.1.1.1
--- index.jsp 16 Dec 2003 15:04:31 -0000 1.2
***************
*** 43,46 ****
--- 43,58 ----
<%=userns.getName()%> is Logged In<br><hr>
<a href="<%=ServletTools.getAbsoluteURL(request,"/")%>?logout=1">Log Out</a>
+
+ <p>
+ <form action="Send" method="GET">
+ <b>To:</b><br/>
+ <input name="to"><br/>
+ <b>Subject:</b><br/>
+ <input name="subject" length="80"><br/>
+ <b>Message:</b><br/>
+ <textarea name="message">
+ </textarea><br/>
+ <input type="submit" value="Sign and Send">
+ </form>
<%
}
|