forked from altcha-org/altcha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.html
46 lines (39 loc) · 890 Bytes
/
example.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<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=""
debug
test
></altcha-widget>
<div class="buttons">
<button type="submit">Submit</button>
<button type="reset">Reset</button>
</div>
</form>
</main>
</body>
</html>