Files
Website/resources/js/components/SMCaptchaNotice.vue
2023-04-25 19:24:20 +10:00

16 lines
411 B
Vue

<template>
<div class="captcha-notice">
This site is protected by reCAPTCHA and the Google
<a href="https://policies.google.com/privacy">Privacy Policy</a> and
<a href="https://policies.google.com/terms">Terms of Service</a> apply.
</div>
</template>
<style lang="scss">
.captcha-notice {
color: var(base-color-text);
font-size: 65%;
margin-bottom: 16px;
}
</style>