working webapp

This commit is contained in:
foo
2016-12-18 07:43:01 +00:00
parent 865b8df406
commit f35ea4c246
6 changed files with 114 additions and 97 deletions

26
war/index.jsp Executable file
View File

@ -0,0 +1,26 @@
<html>
<head><title>Wordsearch builder</title></head>
<body>
<h1>Wordsearch builder</h1>
<h2>Words</h2>
<form action="build.jsp">
<textarea name="words" rows="10">
Kitchen
Lounge
Study
Ballroom
Conservatory
Billiard Room
Library
Hall
Dining Room
</textarea>
<br />
<input type="number" name="height" min="3" max="50" value="5" />
<input type="number" name="width" min="3" max="50" value="5" />
<input type="submit" value="Build!" />
</form>
</body>
</html>