ulrich
7 hours ago ff2ac2a7dddba488efa1bcad8701fe4da366cc44
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">
e74e0d 23     <meta name="viewport" id="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,initial-scale=1.0" >
5a822d 24     <link href="https://fonts.googleapis.com/css?family=Roboto+Condensed" rel="stylesheet">
U 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>
ff2ac2 47             <!--<div class="control row-part">
U 48               <label for="streams">Streams</label>
49               <select id="streams" size="1"></select>
50             </div>-->
5a822d 51           </div>
U 52           <div class="control">
53             <label for="startzeit">Start</label>
54             <input type="range" min="0" max="90000" step="300" value="1" class="slider" id="startzeit">
55           </div>
56           <div class="control">
57             <label for="dauer">Dauer</label>
58             <input type="range" min="0" max="90000" step="300" value="5400" class="slider" id="dauer">
59           </div>
60         </div>        
61         <div id="infobereich">
62           <p id="info"></p>
ff2ac2 63           <p id="cmd" class="cmd"></p>
U 64         </div>
65         <div>
66           <p class="cmd">atq - liste der Jobs | at -c [jobnr] - Job zeigen | atrm [jobnr] - Job löschen</p>
5a822d 67         </div>
U 68         <div class="fusszeile">
69           <p>
70             Erstellt und bereitgestellt von 
71             <a href="https://uhilger.de">Ulrich Hilger</a>,<br>
8da79e 72             erh&auml;ltlich im <a href="https://uhilger.de/gitblit/docs/web!recplaner.git">Code-Repository</a>.
5a822d 73           </p>
U 74         </div>
75       </div>
76       <div class="seite"></div>
77     </div>
78     <script src="app.js"></script>
79     <script>
80       var app;
81       document.addEventListener('DOMContentLoaded', function () {
82         app = new App();
83         app.init();
84       });
85     </script>
86   </body>
87 </html>