16 lines
411 B
Vue
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>
|