blob: 09b56ed918f596b30d2e2415a50f83ff2a27e3d6 (
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
30
31
32
33
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Category</title>
<link rel="stylesheet" type="text/css" href="style.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>
<div class="row">
<label for="name"><u>N</u>ame:</label> <input class="formw" type="text"
placeholder="Name" id="name" name="name" accesskey="n"
maxlength="100">
</div>
<div class="row">
<label for="desc"><u>D</u>escription:</label>
<textarea class="formw" placeholder="Description" id="desc" name="desc"
accesskey="d" maxlength="1000"></textarea>
</div>
<div class="spacer">
</div>
<button type="submit" accesskey="c">
<u>C</u>reate
</button>
<button type="reset" accesskey="r">
<u>R</u>eset
</button>
</form>
</body>
</html>
|