-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdemo.html
More file actions
25 lines (22 loc) · 597 Bytes
/
demo.html
File metadata and controls
25 lines (22 loc) · 597 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>gmCaptcha - Demo</title>
</head>
<body>
<div id="gmCaptcha"></div>
<script src="./public/assets/js/gmCaptcha.js" type="text/javascript"></script>
<script type="text/javascript">
new gmCaptcha({
spellLang: "it-IT",
type: "graphic",
extra: {
style: "text",
custom: 3
}
});
</script>
</body>
</html>