forked from mCaptcha/website
feat: update installation code to use 0.1.0-rc2 style
This commit is contained in:
parent
4636d94374
commit
dfeb9183ba
1 changed files with 13 additions and 9 deletions
|
@ -80,16 +80,20 @@ to replace `Your {{paste your widget link}}` with the link obtained from
|
||||||
the previous step.
|
the previous step.
|
||||||
|
|
||||||
```html
|
```html
|
||||||
|
<label
|
||||||
|
data-mcaptcha_url="{{paste your widget link here}}"
|
||||||
|
for="mcaptcha__token"
|
||||||
|
id="mcaptcha__token-label"
|
||||||
|
>
|
||||||
|
mCaptcha authorization token.
|
||||||
|
<a
|
||||||
|
href="https://mcaptcha.org/docs/user-manual/how-to-mcaptcha-without-js/"
|
||||||
|
>Instructions</a
|
||||||
|
>.
|
||||||
|
<input type="text" name="mcaptcha__token" id="mcaptcha__token" />
|
||||||
|
</label>
|
||||||
<div id="mcaptcha__widget-container"></div>
|
<div id="mcaptcha__widget-container"></div>
|
||||||
<script src="https://unpkg.com/@mcaptcha/vanilla-glue@0.1.0-alpha-2/dist/index.js"></script>
|
<script src="https://unpkg.com/@mcaptcha/vanilla-glue@0.1.0-rc2/dist/index.js"></script>
|
||||||
<script charset="utf-8">
|
|
||||||
let config = {
|
|
||||||
widgetLink: new URL(
|
|
||||||
{{paste yout widget link}}
|
|
||||||
),
|
|
||||||
};
|
|
||||||
new mcaptchaGlue.default(config);
|
|
||||||
</script>
|
|
||||||
```
|
```
|
||||||
|
|
||||||
A full example is available
|
A full example is available
|
||||||
|
|
Loading…
Reference in a new issue