made few changes also adding test method

This commit is contained in:
-
2019-03-18 13:52:01 -06:00
parent 150933b22b
commit 9f5d9e24f5
9 changed files with 43 additions and 41 deletions
+2 -1
View File
@@ -8,7 +8,8 @@
</head>
<body>
<form action="save" method="post">
Enter Theroem Name <input type="text" name="theoremName"><br>
Enter Theorem 1: <input type="text" name="theoremName1">
<br>Enter Theorem 2: <input type="text" name="theoremName2"><br>
<input type="submit" value="save">
</form>
</body>
+2 -1
View File
@@ -1,6 +1,7 @@
<html>
<body>
<b>Name:</b><%= request.getParameter("theoremName")%>
<br><b>Name1:</b><%= request.getParameter("theoremName1")%>
<br><b>Name2:</b><%= request.getParameter("theoremName2")%>
</body>
</html>