ulrich
2020-02-02 fccfef3449ed20288489ab39aeaf448c99835b59
commit | author | age
5a822d 1 <!DOCTYPE html>
U 2 <!-- 
3   Aufzeichnungsplaner
4   Copyright (C) 2020  Ulrich Hilger, https://uhilger.de
5
6   This program is free software: you can redistribute it and/or modify
7   it under the terms of the GNU Affero General Public License as published by
8   the Free Software Foundation, either version 3 of the License, or
9   (at your option) any later version.
10
11   This program is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   GNU Affero General Public License for more details.
15
16   You should have received a copy of the GNU Affero General Public License
17   along with this program.  If not, see <https://www.gnu.org/licenses/>.
18 -->
19 <html>
20   <head>
21     <title>Aufzeichnungsplaner</title>
22     <meta charset="UTF-8">
23     <meta name="viewport" content="width=device-width, initial-scale=1.0">
24     <link href="https://fonts.googleapis.com/css?family=Roboto+Condensed" rel="stylesheet">
25     <link href="https://fonts.googleapis.com/css?family=Ubuntu+Mono" rel="stylesheet"> 
26     <link rel="stylesheet" type="text/css" href="stile.css">
27   </head>
28   <body>
29     <div class="inhalt">
30       <div class="seite"></div>
31       <div class="zentrum">
32         <h3>Aufzeichnungsplaner</h3>
33         <div class="eingabe">
34           <div class="control">
35             <label for="bez">Bezeichnung</label>
36             <input type="text" placeholder="Name der Aufnahme" id="bez">
37           </div>
38           <div class="control-row">
39             <div class="control datumauswahl-behaelter">
40               <label for="startdatum">Startdatum</label>
41               <input type="date" id="startdatum" class="datumauswahl">
42             </div>
43             <div class="control row-part">
44               <label for="sender">Sender</label>
45               <select id="sender" size="1"></select>
46             </div>
47           </div>
48           <div class="control">
49             <label for="startzeit">Start</label>
50             <input type="range" min="0" max="90000" step="300" value="1" class="slider" id="startzeit">
51           </div>
52           <div class="control">
53             <label for="dauer">Dauer</label>
54             <input type="range" min="0" max="90000" step="300" value="5400" class="slider" id="dauer">
55           </div>
56         </div>        
57         <div id="infobereich">
58           <p id="info"></p>
59           <p id="cmd"></p>
60         </div>
61         <div class="fusszeile">
62           <p>
63             Erstellt und bereitgestellt von 
64             <a href="https://uhilger.de">Ulrich Hilger</a>,<br>
8da79e 65             erh&auml;ltlich im <a href="https://uhilger.de/gitblit/docs/web!recplaner.git">Code-Repository</a>.
5a822d 66           </p>
U 67         </div>
68       </div>
69       <div class="seite"></div>
70     </div>
71     <script src="app.js"></script>
72     <script>
73       var app;
74       document.addEventListener('DOMContentLoaded', function () {
75         app = new App();
76         app.init();
77       });
78     </script>
79   </body>
80 </html>