summaryrefslogtreecommitdiff
path: root/html/add.jsp
blob: 1684bb6d560b164dc3dd9767ede86112b8c898c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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">&lt;- Tilbake til quotes</a>
</body>
</html>