filmout_manager/views/index.hbs

23 lines
614 B
Handlebars
Raw Normal View History

<!doctype html>
<html>
<head>
<title>Filmout Manager</title>
</head>
<body>
<div>Screen Resolution : {{width}}x{{height}}</div>
<select name="sequence" id="sequence">
<option> - Select Image Sequence - </option>
{{#each sequences}}
<option value="{{this.hash}}">{{this.name}}</option>
{{/each}}
</select>
<select name="video" id="video">
<option> - Select Video - </option>
{{#each videos}}
<option value="{{this.hash}}">{{this.name}}</option>
{{/each}}
</select>
2024-07-13 02:00:24 +00:00
<button id="open" onclick="client.cameraOpen()">Open Gate</button>
<script src="/static/js/index.js"></script>
</body>
</html>