blob: 462a678b859d56ecc20a22719e4237ca12b89dab (
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
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Category</title>
<link rel="stylesheet" type="text/css" href="underline.css">
</head>
<body>
<a href="./" accesskey="b"><em>B</em>ack </a>
<form action="http://www-in.fh-swf.de/fbp-cgi/showenv.pl" method="post">
<h1>Category</h1>
<label for="name"><u>N</u>ame:</label> <input type="text"
placeholder="Name" id="name" name="name" accesskey="n"
maxlength="100"><br> <label for="desc"><u>D</u>escription:</label>
<textarea placeholder="Description" id="desc" name="desc"
accesskey="d" maxlength="1000"></textarea>
<br>
<button type="submit" accesskey="c">
<u>C</u>reate
</button>
<button type="reset" accesskey="r">
<u>R</u>eset
</button>
</form>
</body>
</html>
|