cctv-control/cam.html

33 lines
1.0 KiB
HTML
Raw Normal View History

2014-01-24 12:35:41 +01:00
<!DOCTYPE HTML>
<html lang=en>
<head>
<meta charset="utf-8">
<script src="js/cctv-control.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="css/cam.css">
</head>
<body onkeydown="keyDown(event)" id='body'>
2014-01-24 12:35:41 +01:00
<div id="screen">
2014-02-07 18:18:50 +01:00
<img src="img/testbild.gif" id="camImage">
2014-01-24 12:35:41 +01:00
</div>
2014-02-14 19:18:18 +01:00
<div id="form">
<img src="about:blank" id="formImage">
<p>
</p>
<p>Personalkennzeichnung</p>
2014-02-14 20:46:33 +01:00
<input id="formName"><br>
2014-02-14 19:18:18 +01:00
<p>Zeitpunkt</p>
2014-02-16 03:13:55 +01:00
<input id="formDate" readonly><br>
2014-02-14 19:18:18 +01:00
<p>Analyse der Aufnahme</p>
2014-02-14 20:46:33 +01:00
<textarea id="formAnalysis1"></textarea>
2014-02-14 19:18:18 +01:00
<p>Bemerkungen zum Untersuchungsverlauf</p>
2014-02-14 20:46:33 +01:00
<textarea id="formAnalysis2"></textarea>
2014-02-14 19:18:18 +01:00
<p>Pers&ouml;nliche Bemerkungen</p>
2014-02-14 20:46:33 +01:00
<textarea id="formAnalysis3"></textarea>
2014-02-14 19:18:18 +01:00
<p>
<a href="#" id='printButton' onclick='hideForm()'>&nbsp</a>
2014-02-14 19:18:18 +01:00
</p>
</div>
2014-01-24 12:35:41 +01:00
</body>
</html>