diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-08-23 14:32:42 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2018-08-23 14:41:19 +0200 |
commit | ad5093b7a63d8b223c19953dc37cc33c31631be8 (patch) | |
tree | 47ec213b84b097cdee0e87d805c0361acb508bb5 | |
parent | 04a744742a06f6f274f7d61fa5d0ab3c6fa72203 (diff) | |
download | nextcloud-server-ad5093b7a63d8b223c19953dc37cc33c31631be8.tar.gz nextcloud-server-ad5093b7a63d8b223c19953dc37cc33c31631be8.zip |
Show link to simple sign up page
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
-rw-r--r-- | config/config.sample.php | 7 | ||||
-rw-r--r-- | core/css/public.scss | 4 | ||||
-rw-r--r-- | core/templates/layout.public.php | 9 | ||||
-rw-r--r-- | lib/private/TemplateLayout.php | 1 |
4 files changed, 20 insertions, 1 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 09b5c185041..16824e67ed1 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -1632,4 +1632,11 @@ $CONFIG = array( '/^Microsoft-WebDAV-MiniRedir/', // Windows webdav drive ), +/** + * By default there is on public pages a link shown that allows users to + * learn about the "simple sign up" - see https://nextcloud.com/signup/ + * + * If this is set to "false" it will not show the link. + */ +'simpleSignUpLink.shown' => true, ); 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 } ?> diff --git a/lib/private/TemplateLayout.php b/lib/private/TemplateLayout.php index fc2e5798e1c..0bd57c4139b 100644 --- a/lib/private/TemplateLayout.php +++ b/lib/private/TemplateLayout.php @@ -132,6 +132,7 @@ class TemplateLayout extends \OC_Template { parent::__construct('core', 'layout.public'); $this->assign( 'appid', $appId ); $this->assign('bodyid', 'body-public'); + $this->assign('showSimpleSignUpLink', $this->config->getSystemValue('simpleSignUpLink.shown', true) !== false); } else { parent::__construct('core', 'layout.base'); |