69 lines
1.9 KiB
HTML
69 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<!--
|
|
Copyright 2014 Nicholas J Humfrey
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
|
|
<head>
|
|
<title>Node-RED Schedule</title>
|
|
|
|
<link rel="shortcut icon" href="../favicon.ico" />
|
|
<meta charset="utf-8" />
|
|
|
|
<script src="../jquery/js/jquery-1.11.1.min.js"></script>
|
|
<script src="../bootstrap/js/bootstrap.min.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="../bootstrap/css/bootstrap.min.css" />
|
|
|
|
<link rel="stylesheet" href="./style.css" />
|
|
<script src="./schedule.js"></script>
|
|
</head>
|
|
|
|
|
|
<body spellcheck="false">
|
|
|
|
<div class="navbar navbar-inverse navbar-static-top">
|
|
<div class="navbar-inner">
|
|
<div class="container-fluid">
|
|
<a class="brand" href="#"><img src="../node-red.png"> <span class="red">Node-RED Schedule</span> </a>
|
|
<div class="btn-group pull-right">
|
|
<a class="btn btn-primary" href="../" id="btn-back"><i class="icon-home icon-white"></i> Back to Admin</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="container">
|
|
<table id="schedule" class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Hour</th>
|
|
<th>Min</th>
|
|
<th>Day</th>
|
|
<th>Month</th>
|
|
<th>Day of Week</th>
|
|
<th>Topic</th>
|
|
<th>Payload</th>
|
|
</thead>
|
|
<tbody>
|
|
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|