diff options
author | Kjetil Orbekk <Kjetil Ørbekk orbekk@pvv.ntnu.no> | 2010-09-03 14:20:07 -0400 |
---|---|---|
committer | Kjetil Orbekk <Kjetil Ørbekk orbekk@pvv.ntnu.no> | 2010-09-03 14:20:10 -0400 |
commit | d5ab045ec80a10b341db2ac5a591d84741ea846a (patch) | |
tree | cc5ca0cb8ffa5160955e99c3ef1f19a7a3197689 /html/add.jsp | |
parent | 2df5088ff7243b6d63763d55426bb23b6df47046 (diff) |
Commit add.jsp; the add quote form.
Diffstat (limited to 'html/add.jsp')
-rw-r--r-- | html/add.jsp | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/html/add.jsp b/html/add.jsp new file mode 100644 index 0000000..1684bb6 --- /dev/null +++ b/html/add.jsp @@ -0,0 +1,29 @@ +<%@ page contentType="text/html; charset=UTF-8" %> + +<html> +<head> + <title>Legg til quote</title> +<style type="text/css"> +body {font-family: monospace;} +hr { + border-style: solid; + border-color: black; + border-width: 1px; +} +</style> +</head> +<body> +<form action="/post/add" method="post"> +ditt nick:<br> +<input type=text name="nick" size=20><br> +dato, YYYY-MM-DD (blank for dagens dato):<br> +<input type=text name="date" size=20><br> +quote:<br> +<textarea name="quote" rows="20" cols="80"></textarea><br> +Prøv å bruke sånn ca. samme timestamp-format (HH:MM) o.l. som eksisterende quotes :-)<br><br> +<input type="submit" value="Legg til"> +</form> +<a href="quotes.jsp"><- Tilbake til quotes</a> +</body> +</html> + |