blob: 6e8ec83af8f77545b13312041af4a03a474af2c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@ include file="header.jsp" %>
<html>
<head><title>Simple jsp page</title></head>
<body>
<form id="form1" name="form1" method="post" action="<portlet:actionURL/>">
<table>
<tr>
<td>Location:</td>
<td><input type="text" name="contributionLocation" size="100"/></td>
</tr>
</table>
<input type="submit" name="addStandaloneNode" value="start"/>
</form>
</body>
</html>
|