mirror of
https://github.com/zonemaster/zonemaster-gui.git
synced 2025-11-22 16:31:04 +01:00
17 lines
403 B
HTML
17 lines
403 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Zonemaster Lib Demo</title>
|
|
<script>
|
|
window.zonemaster = {
|
|
apiEndpoint: 'http://127.0.0.1:8080/api',
|
|
pollingInterval: 1000,
|
|
};
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<button id="headless">Start test</button>
|
|
<zm-domain-test></zm-domain-test>
|
|
<script type="module" src="./demo.ts"></script>
|
|
</body>
|
|
</html>
|