Update copy on settings pages

This commit is contained in:
Andrew Kingston 2022-12-13 16:19:20 +00:00
parent 7a48db02e7
commit 97e36ed7a9
8 changed files with 20 additions and 21 deletions

View File

@ -1,11 +1,12 @@
<script> <script>
export let narrow = false
</script> </script>
<div class="content"> <div class="content">
<div class="side-nav"> <div class="side-nav">
<slot name="side-nav" /> <slot name="side-nav" />
</div> </div>
<div class="main"> <div class="main" class:narrow>
<slot /> <slot />
</div> </div>
</div> </div>
@ -24,4 +25,7 @@
.main { .main {
flex: 1 1 auto; flex: 1 1 auto;
} }
.main.narrow {
max-width: 600px;
}
</style> </style>

View File

@ -37,7 +37,7 @@
<Layout noPadding> <Layout noPadding>
<Layout gap="XS" noPadding> <Layout gap="XS" noPadding>
<Heading size="M">API Key</Heading> <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> </Layout>
<Divider /> <Divider />
<div class="fields"> <div class="fields">

View File

@ -126,11 +126,7 @@
<Layout noPadding> <Layout noPadding>
<Layout noPadding gap="XS"> <Layout noPadding gap="XS">
<Heading size="M">Email</Heading> <Heading size="M">Email</Heading>
<Body> <Body>Add your SMTP details to send automated emails from Budibase</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>
</Layout> </Layout>
<Divider /> <Divider />
{#if smtpConfig} {#if smtpConfig}
@ -164,7 +160,10 @@
<Label size="L">From email address</Label> <Label size="L">From email address</Label>
<Input type="email" bind:value={smtpConfig.config.from} /> <Input type="email" bind:value={smtpConfig.config.from} />
</div> </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} {#if requireAuth}
<div class="form-row"> <div class="form-row">
<Label size="L">User</Label> <Label size="L">User</Label>
@ -191,7 +190,7 @@
<Heading size="S">Templates</Heading> <Heading size="S">Templates</Heading>
<Body size="S"> <Body size="S">
Budibase comes out of the box with ready-made email templates to help 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> </Body>
</Layout> </Layout>
<Table <Table

View File

@ -1,4 +1,4 @@
<script> <script>
import { goto } from "@roxi/routify" import { redirect } from "@roxi/routify"
$goto("./api") $redirect("./api")
</script> </script>

View File

@ -77,11 +77,7 @@
<Layout noPadding> <Layout noPadding>
<Layout gap="XS" noPadding> <Layout gap="XS" noPadding>
<Heading size="M">Organisation</Heading> <Heading size="M">Organisation</Heading>
<Body> <Body>Edit and manage all of your organisation settings</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>
</Layout> </Layout>
<Divider /> <Divider />
<Layout gap="XS" noPadding> <Layout gap="XS" noPadding>

View File

@ -7,7 +7,7 @@
<Layout noPadding> <Layout noPadding>
<Layout gap="XS" noPadding> <Layout gap="XS" noPadding>
<Heading size="M">Theme</Heading> <Heading size="M">Theme</Heading>
<Body>Customize how Budibase looks and feels.</Body> <Body>Customize how Budibase looks and feels</Body>
</Layout> </Layout>
<Divider /> <Divider />
<div class="fields"> <div class="fields">

View File

@ -54,10 +54,10 @@
{#if $auth.isAdmin} {#if $auth.isAdmin}
<Layout noPadding> <Layout noPadding>
<Layout gap="XS" noPadding> <Layout gap="XS" noPadding>
<Heading size="M">Updates</Heading> <Heading size="M">Version</Heading>
<Body> <Body>
Keep your budibase installation up to date to take advantage of the 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> </Body>
</Layout> </Layout>
<Divider /> <Divider />

View File

@ -7,8 +7,8 @@
$: narrow = !$isActive("./users/index") && !$isActive("./groups/index") $: narrow = !$isActive("./users/index") && !$isActive("./groups/index")
</script> </script>
<Page {narrow}> <Page>
<Content> <Content {narrow}>
<div slot="side-nav"> <div slot="side-nav">
<SideNav title="Users"> <SideNav title="Users">
<SideNavItem <SideNavItem