working jsp!

This commit is contained in:
foo
2016-02-15 13:03:02 +00:00
parent adb87c0f07
commit 7f4d5d9f49
5 changed files with 145 additions and 0 deletions

23
war/index.jsp Normal file
View File

@ -0,0 +1,23 @@
<html>
<head><title>Wordbubbles solver</title></head>
<%@ page import="uk.org.mafoo.wordbubbles.*" %>
<body>
<h1>Wordbubbles or Boggle solver</h1>
<h2>Input grid</h2>
<form action="solver.jsp">
<input type="radio" name="dictionary" checked>twl06</input><br />
<textarea name="grid" rows="10" cols="10" style="font-family: monospace;">
som e
te xt
g oes
here
</textarea>
<br />
<input type="number" name="desired" min="3" value="5" />
<input type="submit" value="Submit" />
</form>
</body>
</html>