blob: 913fd91f488632a381b1d88cccb16bc8ec619c2d (
plain) (
blame)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<link rel="stylesheet" type="text/css"
href="/Dozentenmodul_V1/css/Layout.css"></link>
<link rel="stylesheet" type="text/css"
href="/Dozentenmodul_V1/css/Input.css"></link>
<title>Insert title here</title>
</head>
<body>
<jsp:include page="header.html" />
<jsp:include page="menü.html" />
<jsp:include page="news.jsp" />
<div id="content">
<div id="bread">
Sie sind hier:
<a href="#" rel="createVL_allgemine.jsp">Allgemein</a>
>
<a href="#" rel="system">System</a>
<!-- >
<a href="#" rel="software">Software</a>-->
</div>
<br \>
<form action="createVL_Software.jsp">
<fieldset>
<legend>Systeminformationen</legend>
<table>
<tr>
<td>Laborname (Anzeigename): *</td>
<td><input name="Laborname" type="text" /></td>
</tr>
<tr>
<td>Kurzbeschreibung: *</td>
<td><input name="shortDesc" type="text" /></td>
</tr>
<tr>
<td>Langbeschreibung: *</td>
<td><textarea name="TextArea1" cols="20" rows="5"></textarea></td>
</tr>
<tr>
<td>Kommentar:</td>
<td><textarea name="TextArea1" cols="20" rows="5"></textarea></td>
</tr>
<tr>
<td>Betriebssystem: *</td>
<td><select name="OS">
<option>WIN</option>
</select></td>
</tr>
<tr>
<td>Gültigkeitsdatum: *</td>
<td>von: <input type="text" id="von_date" maxlength="25"
size="25" readonly="readonly" /> <img
src="/Dozentenmodul_V1/img/Calendar/cal.gif"
onclick="javascript:NewCssCal ('von_date','yyyyMMdd','arrow',true,'24',true)"
style="cursor: pointer" /> bis: <input type="text"
id="bis_date" maxlength="25" size="25" readonly="readonly" />
<img src="/Dozentenmodul_V1/img/Calendar/cal.gif"
onclick="javascript:NewCssCal ('bis_date','yyyyMMdd','arrow',true,'24',true)"
style="cursor: pointer" />
</td>
</tr>
<tr>
<td>Labor sichtbar: *</td>
<td><input name="sichtbar" type="radio" value="ja" />Ja<br></br>
<input name="sichtbar" type="radio" value="nein" />Nein</td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
</table>
</fieldset>
</div>
<button id="buttonweiter" type="submit">Weiter</button>
</form>
</div>
<jsp:include page="footer.html" />
</body>
</html>
|