<!DOCTYPE html>
|
<!--
|
Aufzeichnungsplaner
|
Copyright (C) 2020 Ulrich Hilger, https://uhilger.de
|
|
This program is free software: you can redistribute it and/or modify
|
it under the terms of the GNU Affero General Public License as published by
|
the Free Software Foundation, either version 3 of the License, or
|
(at your option) any later version.
|
|
This program is distributed in the hope that it will be useful,
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
GNU Affero General Public License for more details.
|
|
You should have received a copy of the GNU Affero General Public License
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
-->
|
<html>
|
<head>
|
<title>Aufzeichnungsplaner</title>
|
<meta charset="UTF-8">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed" rel="stylesheet">
|
<link href="https://fonts.googleapis.com/css?family=Ubuntu+Mono" rel="stylesheet">
|
<link rel="stylesheet" type="text/css" href="stile.css">
|
</head>
|
<body>
|
<div class="inhalt">
|
<div class="seite"></div>
|
<div class="zentrum">
|
<h3>Aufzeichnungsplaner</h3>
|
<div class="eingabe">
|
<div class="control">
|
<label for="bez">Bezeichnung</label>
|
<input type="text" placeholder="Name der Aufnahme" id="bez">
|
</div>
|
<div class="control-row">
|
<div class="control datumauswahl-behaelter">
|
<label for="startdatum">Startdatum</label>
|
<input type="date" id="startdatum" class="datumauswahl">
|
</div>
|
<div class="control row-part">
|
<label for="sender">Sender</label>
|
<select id="sender" size="1"></select>
|
</div>
|
</div>
|
<div class="control">
|
<label for="startzeit">Start</label>
|
<input type="range" min="0" max="90000" step="300" value="1" class="slider" id="startzeit">
|
</div>
|
<div class="control">
|
<label for="dauer">Dauer</label>
|
<input type="range" min="0" max="90000" step="300" value="5400" class="slider" id="dauer">
|
</div>
|
</div>
|
<div id="infobereich">
|
<p id="info"></p>
|
<p id="cmd"></p>
|
</div>
|
<div class="fusszeile">
|
<p>
|
Erstellt und bereitgestellt von
|
<a href="https://uhilger.de">Ulrich Hilger</a>,<br>
|
erhältlich im Code-Repository.
|
</p>
|
</div>
|
</div>
|
<div class="seite"></div>
|
</div>
|
<script src="app.js"></script>
|
<script>
|
var app;
|
document.addEventListener('DOMContentLoaded', function () {
|
app = new App();
|
app.init();
|
});
|
</script>
|
</body>
|
</html>
|