2019-09-26 18:37:48 +02:00
|
|
|
<html>
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<link href="index.css" rel="stylesheet" />
|
|
|
|
<script src="index.js"></script>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<form name="link">
|
|
|
|
<div class="input-group">
|
|
|
|
<label for="url-field">Watch server url</label>
|
2019-10-08 18:14:07 +02:00
|
|
|
<input name="url-field" type="text" value="10.1.0.155:5000" required></input>
|
2019-09-26 18:37:48 +02:00
|
|
|
</div>
|
|
|
|
<div class="input-group">
|
|
|
|
<label for="run-field">Run id</label>
|
|
|
|
<input name="run-field" type="number" value="1" required></input>
|
|
|
|
</div>
|
|
|
|
<div class="input-group">
|
|
|
|
<label for="link-field"> Link id </label>
|
|
|
|
<input name="link-field" type="number" value="0" required></input>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="input-group">
|
2019-09-27 15:20:10 +02:00
|
|
|
<input type="button" name="start" value="Start" onclick="call_backend()" />
|
|
|
|
<input type="button" name="handoff" value="Handoff" onclick="call_backend()" />
|
2019-09-26 18:37:48 +02:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<p>Result: <span id="result" style="font-weight: bold;"></span></p>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|