zkl-roadhog/index.html
2024-10-01 22:56:10 +03:00

22 lines
558 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>ZKL Roadhog Demo</title>
</head>
<body>
<script src="dist/bundle.js"></script>
<script>
window.addEventListener('load', function () {
document.getElementById('metamask').disabled = false;
document.getElementById('phantom').disabled = false;
});
</script>
<h1>ZKL Roadhog Demo</h1>
<button disabled id="metamask" onclick="signIn('ethereum')">sign in with metamask</button>
<button disabled id="phantom" onclick="signIn('solana')">sign in with solana</button>
</body>
</html>