42 lines
847 B
HTML
42 lines
847 B
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
|
|
|
<html>
|
|
<head>
|
|
<title>Check hinzufügen</title>
|
|
</head>
|
|
|
|
<body>
|
|
<b><u>Check hinzufügen</u></b>
|
|
<form action="save_check.pl">
|
|
<table border="1">
|
|
<tr>
|
|
<td>Description</td>
|
|
<td><input name="descr" type="text" value=""></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Prüfung</td>
|
|
<td>
|
|
<select name="if">
|
|
<option>EQ</option>
|
|
<option>NEQ</option>
|
|
<option>LT</option>
|
|
<option>NLT</option>
|
|
<option>GT</option>
|
|
<option>NGT</option>
|
|
<option>BT</option>
|
|
<option>NBT</option>
|
|
<option>RE</option>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Vergleichswert</td>
|
|
<td><input name="value" type="text" value=""></td>
|
|
</tr>
|
|
</table>
|
|
<input type="submit" value="speichern">
|
|
</form>
|
|
|
|
</body>
|
|
</html>
|