ulrich
2020-05-30 fcdfa744b5eb262e70560d7c6bf539968b703b62
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
<!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" id="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,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&auml;ltlich im <a href="https://uhilger.de/gitblit/docs/web!recplaner.git">Code-Repository</a>.
          </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>