2017-02-28 23:31:28 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<!--
|
|
|
|
~ rcrdit records TV programs from TV tuners
|
|
|
|
~ Copyright (C) 2017 Travis Burtrum
|
|
|
|
~
|
|
|
|
~ 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 <http://www.gnu.org/licenses/>.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2017-03-04 00:34:58 -05:00
|
|
|
<meta charset="UTF-8"/>
|
2017-02-28 23:31:28 -05:00
|
|
|
<title>Rcrdit</title>
|
2017-03-04 00:34:58 -05:00
|
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
|
|
|
|
<script src="js/rcrdit.js"></script>
|
2017-03-06 23:28:53 -05:00
|
|
|
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/jquery-ui.css">
|
|
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
|
2017-03-10 21:35:39 -05:00
|
|
|
<script src="js/moment.min.js"></script>
|
2017-03-05 23:19:18 -05:00
|
|
|
<link rel="stylesheet" type="text/css" href="css/rcrdit.css">
|
2017-03-10 21:35:39 -05:00
|
|
|
<script src="js/timepicker/jquery-ui-timepicker-addon.min.js"></script>
|
|
|
|
<link rel="stylesheet" type="text/css" href="js/timepicker/jquery-ui-timepicker-addon.min.css">
|
|
|
|
|
|
|
|
<script src="js/toastr/toastr.min.js"></script>
|
|
|
|
<link rel="stylesheet" type="text/css" href="js/toastr/toastr.min.css">
|
|
|
|
|
2017-02-28 23:31:28 -05:00
|
|
|
</head>
|
|
|
|
<body>
|
2017-03-05 23:19:18 -05:00
|
|
|
<div id='rcrditHeader'>
|
2017-03-06 18:16:31 -05:00
|
|
|
<a href="javascript:forceScheduleUpdate();"><img src="images/rcrditx128.png" alt='logo'/></a>
|
2017-03-05 23:19:18 -05:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="guideGoesHere" style='width: 90%'>
|
2017-03-04 00:34:58 -05:00
|
|
|
|
|
|
|
|
|
|
|
</div>
|
2017-02-28 23:31:28 -05:00
|
|
|
</body>
|
|
|
|
</html>
|