36 lines
681 B
HTML
36 lines
681 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Routing config</title>
|
|
<script src="jquery-3.7.1.min.js" type="text/javascript"></script>
|
|
</head>
|
|
<body>
|
|
<span id="loading">Loading...</span>
|
|
|
|
<div style="display: none" id="panel">
|
|
Selected networks:
|
|
<table id="net-table">
|
|
<tr>
|
|
<td><input type="checkbox"></td>
|
|
<td><span>Network name</span></td>
|
|
</tr>
|
|
</table>
|
|
|
|
<div id="buttons">
|
|
<button id="save">Save</button>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script type="module">
|
|
import {App} from "./App.js";
|
|
|
|
$(document).ready(function () {
|
|
App.render();
|
|
});
|
|
</script>
|
|
|
|
|
|
</body>
|
|
</html> |