diff options
| author | ivarlovlie <git@ivarlovlie.no> | 2022-06-05 21:50:26 +0200 |
|---|---|---|
| committer | ivarlovlie <git@ivarlovlie.no> | 2022-06-05 21:50:26 +0200 |
| commit | 44a95927edb532f8982cf24c03d9fdd129016bd6 (patch) | |
| tree | cd0efffc182f9429f8ec2bfe9622e6d36446f112 /apps/portal/src/app/pages/sign-up.svelte | |
| parent | 54b63daf1b5cefb54a3c616a4fee3ef57a671936 (diff) | |
| download | greatoffice-44a95927edb532f8982cf24c03d9fdd129016bd6.tar.xz greatoffice-44a95927edb532f8982cf24c03d9fdd129016bd6.zip | |
feat: Implement new theme switcher component and backend
The theme is now shared between the domain returned by base_domain()
Diffstat (limited to 'apps/portal/src/app/pages/sign-up.svelte')
| -rw-r--r-- | apps/portal/src/app/pages/sign-up.svelte | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/apps/portal/src/app/pages/sign-up.svelte b/apps/portal/src/app/pages/sign-up.svelte index 31ae55b..509d33a 100644 --- a/apps/portal/src/app/pages/sign-up.svelte +++ b/apps/portal/src/app/pages/sign-up.svelte @@ -84,12 +84,15 @@ class="max-width-xxs"> <fieldset> <legend class="form-legend"> - <span class="margin-bottom-xs">Create your account</span> <br/> + <span class="margin-bottom-xs text-xl">Create your account</span> <br/> <span class="text-sm" >... or <a href="/login" use:link>log in</a></span > </legend> + <div class="margin-bottom-xs"> + <p>Provide an email and password to get immediate access to your new environment (30 days full access, no billing details required, no promotion emails).</p> + </div> <div class="margin-bottom-xxs max-width-xxs"> <Alert visible={signupForm.alert.isVisible} title={signupForm.alert.title} @@ -114,7 +117,7 @@ </div> <div class="flex justify-end"> <Button class="margin-bottom-xs" - text="Submit" + text="Create account" type="primary" loading={signupForm.loading} /> |
