37 lines
1.0 KiB
HTML
37 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>Arcast - Remote Control</title>
|
|
<link rel="stylesheet" href="/apps/lib/style.css" />
|
|
<script type="text/javascript" src="../lib/arcast.js" defer></script>
|
|
<script type="text/javascript" src="app.js" defer></script>
|
|
</head>
|
|
<body>
|
|
<div id="main" class="container">
|
|
<div class="panel">
|
|
<h1>Remote control</h1>
|
|
<table class="fullwidth">
|
|
<thead>
|
|
<tr>
|
|
<th>Status</th>
|
|
<th>Title</th>
|
|
<th>URL</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr id="status" class="text-centered">
|
|
<td colspan="3">Refreshing...</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<input class="text-input" id="url-input" placeholder />
|
|
<button onclick="castUrl()">Cast</button>
|
|
<button onclick="reset()">Reset</button>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|