Fix layout of create super admin page
This commit is contained in:
parent
78ba798be2
commit
5daccbd76e
|
@ -32,22 +32,22 @@
|
|||
|
||||
<section>
|
||||
<div class="container">
|
||||
<Layout gap="XS">
|
||||
<Layout>
|
||||
<img src="https://i.imgur.com/ZKyklgF.png" />
|
||||
</Layout>
|
||||
<div class="center">
|
||||
<Layout gap="XS">
|
||||
<Layout gap="XS" justifyItems="center" noPadding>
|
||||
<Heading size="M">Create an admin user</Heading>
|
||||
<Body size="M"
|
||||
>The admin user has access to everything in Budibase.</Body
|
||||
>
|
||||
<Body size="M" textAlign="center" noPadding>
|
||||
The admin user has access to everything in Budibase.
|
||||
</Body>
|
||||
</Layout>
|
||||
<Layout gap="XS" noPadding>
|
||||
<Input label="Email" bind:value={adminUser.email} />
|
||||
<Input
|
||||
label="Password"
|
||||
type="password"
|
||||
bind:value={adminUser.password}
|
||||
/>
|
||||
</Layout>
|
||||
</div>
|
||||
<Layout gap="XS">
|
||||
<Input label="Email" bind:value={adminUser.email} />
|
||||
<Input label="Password" type="password" bind:value={adminUser.password} />
|
||||
</Layout>
|
||||
<Layout gap="S">
|
||||
<Button cta on:click={save}>Create super admin user</Button>
|
||||
</Layout>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue