23 lines
614 B
Handlebars
23 lines
614 B
Handlebars
<!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>
|
|
<button id="open" onclick="client.cameraOpen()">Open Gate</button>
|
|
<script src="/static/js/index.js"></script>
|
|
</body>
|
|
</html> |