wordsearch/war/index.jsp

31 lines
642 B
Plaintext
Raw Normal View History

2016-12-18 07:43:01 +00:00
<html>
<head><title>Wordsearch builder</title></head>
<body>
<h1>Wordsearch builder</h1>
2016-12-18 20:55:35 +00:00
<a href="about.html">About</a>
2016-12-18 07:43:01 +00:00
<h2>Words</h2>
2016-12-18 20:55:35 +00:00
<form action="build.jsp" method="post">
2016-12-19 12:28:56 +00:00
Name: <input type="text" size="25" name="name" value="Wordsearch"><br />
2016-12-18 07:54:41 +00:00
<textarea name="words" rows="10">
2016-12-18 07:43:01 +00:00
Kitchen
Lounge
Study
Ballroom
Conservatory
Billiard Room
Library
Hall
Dining Room
2016-12-18 07:54:41 +00:00
</textarea>
2016-12-18 07:43:01 +00:00
<br />
2016-12-18 07:44:06 +00:00
<input type="number" name="height" min="3" max="50" value="15" />
<input type="number" name="width" min="3" max="50" value="15" />
2016-12-19 12:28:56 +00:00
<input type="checkbox" name="simple" value="yes">Simple?
2016-12-18 07:43:01 +00:00
<input type="submit" value="Build!" />
</form>
</body>
</html>