Files
webcompile/src/lib/Form/Captcha.svelte
T
2022-08-31 14:16:12 +03:00

23 lines
463 B
Svelte

<script>
import HCaptcha from "svelte-hcaptcha";
import { Note } from "$lib/Form";
let submit = false;
let showSubmitButton = () => {
submit = !submit;
};
</script>
<Note
content="The submit button will be visible when you complete the Captcha."
icon="i-fa6-solid:circle-info"
/>
<HCaptcha
sitekey="67e84266-980c-4050-8a39-142a91928fe8"
on:success={showSubmitButton}
/>
{#if submit}
<input type="submit" value="Submit" class="form-button" />
{/if}