34 lines
1,001 B
HTML
34 lines
1,001 B
HTML
|
<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>
|
||
|
<input name="url-field" type="text" required></input>
|
||
|
</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">
|
||
|
<input type="button" name="start" value="Start" onClick="call_backend" />
|
||
|
<input type="button" name="handoff" value="Handoff" onClick="call_backend" />
|
||
|
</div>
|
||
|
</form>
|
||
|
|
||
|
<p>Result: <span id="result" style="font-weight: bold;"></span></p>
|
||
|
|
||
|
</body>
|
||
|
|
||
|
</html>
|