Update copy on settings pages
This commit is contained in:
parent
7a48db02e7
commit
97e36ed7a9
|
@ -1,11 +1,12 @@
|
|||
<script>
|
||||
export let narrow = false
|
||||
</script>
|
||||
|
||||
<div class="content">
|
||||
<div class="side-nav">
|
||||
<slot name="side-nav" />
|
||||
</div>
|
||||
<div class="main">
|
||||
<div class="main" class:narrow>
|
||||
<slot />
|
||||
</div>
|
||||
</div>
|
||||
|
@ -24,4 +25,7 @@
|
|||
.main {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.main.narrow {
|
||||
max-width: 600px;
|
||||
}
|
||||
</style>
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
<Layout noPadding>
|
||||
<Layout gap="XS" noPadding>
|
||||
<Heading size="M">API Key</Heading>
|
||||
<Body>You API key to access the Budibase public API</Body>
|
||||
<Body>Your API key to access the Budibase public API</Body>
|
||||
</Layout>
|
||||
<Divider />
|
||||
<div class="fields">
|
||||
|
|
|
@ -126,11 +126,7 @@
|
|||
<Layout noPadding>
|
||||
<Layout noPadding gap="XS">
|
||||
<Heading size="M">Email</Heading>
|
||||
<Body>
|
||||
Sending email is not required, but highly recommended for processes such
|
||||
as password recovery. To setup automated auth emails, simply add the
|
||||
values below and click activate.
|
||||
</Body>
|
||||
<Body>Add your SMTP details to send automated emails from Budibase</Body>
|
||||
</Layout>
|
||||
<Divider />
|
||||
{#if smtpConfig}
|
||||
|
@ -164,7 +160,10 @@
|
|||
<Label size="L">From email address</Label>
|
||||
<Input type="email" bind:value={smtpConfig.config.from} />
|
||||
</div>
|
||||
<Checkbox bind:value={requireAuth} text="Require sign-in" />
|
||||
<div class="form-row">
|
||||
<Label size="L">Require sign in</Label>
|
||||
<Checkbox bind:value={requireAuth} />
|
||||
</div>
|
||||
{#if requireAuth}
|
||||
<div class="form-row">
|
||||
<Label size="L">User</Label>
|
||||
|
@ -191,7 +190,7 @@
|
|||
<Heading size="S">Templates</Heading>
|
||||
<Body size="S">
|
||||
Budibase comes out of the box with ready-made email templates to help
|
||||
with user onboarding. Please refrain from changing the links.
|
||||
with user onboarding.
|
||||
</Body>
|
||||
</Layout>
|
||||
<Table
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<script>
|
||||
import { goto } from "@roxi/routify"
|
||||
$goto("./api")
|
||||
import { redirect } from "@roxi/routify"
|
||||
$redirect("./api")
|
||||
</script>
|
||||
|
|
|
@ -77,11 +77,7 @@
|
|||
<Layout noPadding>
|
||||
<Layout gap="XS" noPadding>
|
||||
<Heading size="M">Organisation</Heading>
|
||||
<Body>
|
||||
Organisation settings is where you can edit your organisation name and
|
||||
logo. You can also configure your platform URL and enable or disable
|
||||
analytics.
|
||||
</Body>
|
||||
<Body>Edit and manage all of your organisation settings</Body>
|
||||
</Layout>
|
||||
<Divider />
|
||||
<Layout gap="XS" noPadding>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<Layout noPadding>
|
||||
<Layout gap="XS" noPadding>
|
||||
<Heading size="M">Theme</Heading>
|
||||
<Body>Customize how Budibase looks and feels.</Body>
|
||||
<Body>Customize how Budibase looks and feels</Body>
|
||||
</Layout>
|
||||
<Divider />
|
||||
<div class="fields">
|
||||
|
|
|
@ -54,10 +54,10 @@
|
|||
{#if $auth.isAdmin}
|
||||
<Layout noPadding>
|
||||
<Layout gap="XS" noPadding>
|
||||
<Heading size="M">Updates</Heading>
|
||||
<Heading size="M">Version</Heading>
|
||||
<Body>
|
||||
Keep your budibase installation up to date to take advantage of the
|
||||
latest features, security updates and much more.
|
||||
latest features, security updates and much more
|
||||
</Body>
|
||||
</Layout>
|
||||
<Divider />
|
||||
|
|
|
@ -7,8 +7,8 @@
|
|||
$: narrow = !$isActive("./users/index") && !$isActive("./groups/index")
|
||||
</script>
|
||||
|
||||
<Page {narrow}>
|
||||
<Content>
|
||||
<Page>
|
||||
<Content {narrow}>
|
||||
<div slot="side-nav">
|
||||
<SideNav title="Users">
|
||||
<SideNavItem
|
||||
|
|
Loading…
Reference in New Issue