summaryrefslogtreecommitdiffstats
path: root/sandbox/thilina/geronimo_ACE/src/main/webapp/pages/Standalone.jsp
blob: 120d7583ebdb69ed5a6a302050137f617ddd846f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<%@ 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>Contribution Location :</td>
                  <td><input type="text" name="contributionLocation" size="100"/></td>
              </tr>
              <tr>
                  <td>Name of the node :</td>
                  <td><input type="text" name="nodeName" size="100"/></td>
              </tr>
              <tr>
                  <td>Composite :</td>
                  <td><input type="text" name="composite" size="100"/></td>
              </tr>
          </table>
          <input type="submit" name="addStandaloneNode" value="start"/>
   </form>

  </body>
</html>