Storing data using static forms
I am following this tutorial:
Is there any way to get the data using normal input boxes from a page designed on static template and submit it into the jsp file POST.post.jsp. Here is the design and code of my page designed using static templates.

<H1>Enter employee details</h1>
<form action="/apps/eysample/components/structure/contentpage/processform.jsp">
First name:<br>
<input type="text" name="firstname">
<br>
Position:<br>
<input type="text" name="position"><br>
Office:<br>
<input type="text" name="office">
<br>
Age:<br>
<input type="text" name="age">
<br>
Date:<br>
<input type="text" name="date">
<br>
Salary:<br>
<input type="text" name="sal">
<button type="submit">Submit</button>
</form>
I tried creating a copy of post.POST.jsp and referred it as shown in the code. Can anyone please help me out because my method is not working,