mirror of
https://github.com/PR0M3TH3AN/VoxVera.git
synced 2025-09-08 15:08:42 +00:00
21 lines
484 B
HTML
21 lines
484 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>VoxVera GUI</title>
|
|
</head>
|
|
<body>
|
|
<h1>VoxVera</h1>
|
|
<button id="quickstart">Quickstart</button>
|
|
<p id="onion-address"></p>
|
|
<script>
|
|
document.getElementById('quickstart').addEventListener('click', () => {
|
|
window.voxvera.quickstart();
|
|
});
|
|
window.voxvera.onOnionUrl(url => {
|
|
document.getElementById('onion-address').textContent = `Onion address: ${url}`;
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|