mirror of
https://github.com/gutmensch/docker-dmarc-report.git
synced 2025-12-29 16:15:55 +00:00
Add simple webclient to manage zones
This commit is contained in:
73
public_html/index.html
Normal file
73
public_html/index.html
Normal file
@@ -0,0 +1,73 @@
|
||||
<!DOCTYPE html>
|
||||
<html class="ui-mobile-rendering">
|
||||
<head>
|
||||
<title></title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="css/jquery.mobile-1.0.1.min.css"/>
|
||||
<link rel="stylesheet" href="css/font-awesome.css">
|
||||
|
||||
<!-- The Templates -->
|
||||
<script type="text/template" id="home">
|
||||
|
||||
<div id="home_title_status" data-role="header">
|
||||
<h1>Raumserver App</h1>
|
||||
</div>
|
||||
|
||||
<div data-role="content">
|
||||
<h3>Controller</h3>
|
||||
<table id="player_control"></table>
|
||||
<h3>Manage Zones</h3>
|
||||
<ul id="home_zone_list" data-role="listview" data-inset="true">
|
||||
</ul>
|
||||
<h3>Manage Single Rooms</h3>
|
||||
<ul id="home_room_list" data-role="listview" data-inset="true">
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</script>
|
||||
|
||||
<script type="text/template" id="zone">
|
||||
|
||||
<div data-role="header">
|
||||
<a href="#" data-icon="back" class="back ui-btn-left">Back</a>
|
||||
<h1>Zone Configuration</h1>
|
||||
</div>
|
||||
|
||||
<div data-role="content">
|
||||
<h3>Controller</h3>
|
||||
<table id="player_control"></table>
|
||||
<h3>Source</h3>
|
||||
<ul id="zone_source_list" data-role="listview" data-inset="true">
|
||||
</ul>
|
||||
<h3>Rooms</h3>
|
||||
<table id="zone_room_list">
|
||||
<th>Name</th><th>Online</th><th>Toggle Zone</th><th>Status</th>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
</script>
|
||||
|
||||
<script type="text/template" id="room">
|
||||
|
||||
<div data-role="header">
|
||||
<a href="#" data-icon="back" class="back ui-btn-left">Back</a>
|
||||
<h1>Room Configuration</h1>
|
||||
</div>
|
||||
|
||||
<div data-role="content">
|
||||
</div>
|
||||
|
||||
</script>
|
||||
|
||||
<!-- The Scripts -->
|
||||
<script src="lib/jquery-1.7.1.min.js"></script>
|
||||
<script src="js/jqm-config.js"></script>
|
||||
<script src="lib/jquery.mobile-1.0.1.min.js"></script>
|
||||
<script src="lib/underscore-min.js"></script>
|
||||
<script src="lib/backbone-min.js"></script>
|
||||
<script src="js/main.js"></script>
|
||||
</head>
|
||||
|
||||
<body></body>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user