Browse Source
Merge pull request #2903 from Budibase/cloud-license-agreement
added 'you agree to license' on cloud login
pull/2905/head
Martin McKeaveney
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
11 additions and
0 deletions
-
packages/builder/src/pages/builder/auth/login.svelte
|
|
|
@ -8,6 +8,7 @@ |
|
|
|
Input, |
|
|
|
Layout, |
|
|
|
notifications, |
|
|
|
Link, |
|
|
|
} from "@budibase/bbui" |
|
|
|
import { goto, params } from "@roxi/routify" |
|
|
|
import { auth, organisation, oidc, admin } from "stores/portal" |
|
|
|
@ -97,6 +98,16 @@ |
|
|
|
</ActionButton> |
|
|
|
{/if} |
|
|
|
</Layout> |
|
|
|
{#if cloud} |
|
|
|
<Body size="xs" textAlign="center"> |
|
|
|
By using Budibase Cloud |
|
|
|
<br /> |
|
|
|
you are agreeing to our |
|
|
|
<Link href="https://budibase.com/eula" target="_blank" |
|
|
|
>License Agreement</Link |
|
|
|
> |
|
|
|
</Body> |
|
|
|
{/if} |
|
|
|
</Layout> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|