UNPKG

1.95 kBHTMLView Raw
1<!DOCTYPE html>
2<html lang="en">
3
4<!--
5 Copyright 2014 Nicholas J Humfrey
6
7 Licensed under the Apache License, Version 2.0 (the "License");
8 you may not use this file except in compliance with the License.
9 You may obtain a copy of the License at
10
11 http://www.apache.org/licenses/LICENSE-2.0
12
13 Unless required by applicable law or agreed to in writing, software
14 distributed under the License is distributed on an "AS IS" BASIS,
15 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 See the License for the specific language governing permissions and
17 limitations under the License.
18-->
19
20<head>
21 <title>Node-RED Schedule</title>
22
23 <link rel="shortcut icon" href="../favicon.ico" />
24 <meta charset="utf-8" />
25
26 <script src="../jquery/js/jquery-1.11.1.min.js"></script>
27 <script src="../bootstrap/js/bootstrap.min.js"></script>
28 <link rel="stylesheet" type="text/css" href="../bootstrap/css/bootstrap.min.css" />
29
30 <link rel="stylesheet" href="./style.css" />
31 <script src="./schedule.js"></script>
32</head>
33
34
35<body spellcheck="false">
36
37 <div class="navbar navbar-inverse navbar-static-top">
38 <div class="navbar-inner">
39 <div class="container-fluid">
40 <a class="brand" href="#"><img src="../node-red.png"> <span class="red">Node-RED Schedule</span> </a>
41 <div class="btn-group pull-right">
42 <a class="btn btn-primary" href="../" id="btn-back"><i class="icon-home icon-white"></i> Back to Admin</a>
43 </div>
44 </div>
45 </div>
46 </div>
47
48 <div class="container">
49 <table id="schedule" class="table table-striped">
50 <thead>
51 <tr>
52 <th>Name</th>
53 <th>Hour</th>
54 <th>Min</th>
55 <th>Day</th>
56 <th>Month</th>
57 <th>Day of Week</th>
58 <th>Topic</th>
59 <th>Payload</th>
60 </thead>
61 <tbody>
62
63 </tbody>
64 </table>
65 </div>
66
67</body>
68</html>