diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-08-23 15:31:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-23 15:31:51 +0200 |
commit | 162b16b5054be4034e700f1fb8640fdb34615e59 (patch) | |
tree | 0a8ac535649cbb60d2aa6105d3fd8c551ac43485 /core | |
parent | 2219d352072f829b07b48a76ff55b9de667f28e3 (diff) | |
parent | ad5093b7a63d8b223c19953dc37cc33c31631be8 (diff) | |
download | nextcloud-server-162b16b5054be4034e700f1fb8640fdb34615e59.tar.gz nextcloud-server-162b16b5054be4034e700f1fb8640fdb34615e59.zip |
Merge pull request #10822 from nextcloud/feature/noid/show-link-to-simple-sign-up
Show link to simple sign up page
Diffstat (limited to 'core')
-rw-r--r-- | core/css/public.scss | 4 | ||||
-rw-r--r-- | core/templates/layout.public.php | 9 |
2 files changed, 12 insertions, 1 deletions
diff --git a/core/css/public.scss b/core/css/public.scss index a4e7ed579b9..cac98f23f92 100644 --- a/core/css/public.scss +++ b/core/css/public.scss @@ -1,4 +1,4 @@ -$footer-height: 60px; +$footer-height: 65px; #body-public { .header-right { @@ -75,7 +75,9 @@ $footer-height: 60px; align-items: center; justify-content: center; height: $footer-height; + flex-direction: column; p { + text-align: center; color: var(--color-text-lighter); a { color: var(--color-text-lighter); diff --git a/core/templates/layout.public.php b/core/templates/layout.public.php index 13baf194010..0558da52d0b 100644 --- a/core/templates/layout.public.php +++ b/core/templates/layout.public.php @@ -79,6 +79,15 @@ <?php if(isset($template) && $template->getFooterVisible()) { ?> <footer> <p><?php print_unescaped($theme->getLongFooter()); ?></p> + <?php + if ($_['showSimpleSignUpLink']) { + ?> + <p> + <a href="https://nextcloud.com/signup/" target="_blank" rel="noreferrer noopener">Get your own free account</a> + </p> + <?php + } + ?> </footer> <?php } ?> |