Files
altcha/example.html
Daniel Regeci aa398bf0eb wip
2024-12-14 14:56:20 +07:00

46 lines
918 B
HTML

<html>
<head>
<style>
body {
font-family: sans-serif;
}
main {
padding: 1rem;
}
.buttons {
margin-top: 1rem;
}
</style>
<script async defer src="./dist/altcha.js" type="module"></script>
<script>
window.addEventListener('load', () => {
document.querySelector('#altcha').addEventListener('statechange', (ev) => {
console.log('State change:', ev.detail);
});
});
</script>
</head>
<body>
<main>
<form action="/submit" method="post">
<altcha-widget
id="altcha"
challengeurl="http://localhost:8000/altcha"
debug
test
></altcha-widget>
<div class="buttons">
<button type="submit">Submit</button>
<button type="reset">Reset</button>
</div>
</form>
</main>
</body>
</html>