diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2018-03-08 11:10:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-08 11:10:37 +0100 |
commit | 5acd5315f23b4472f31c4a0bb612b7356032defc (patch) | |
tree | e9340c18e54aca550253bb6ba7c03f67a3e01e7f /app/views/about | |
parent | b79ab15859e7f8383526afd147e8416d2df2f7a7 (diff) |
Improve styling of closed registrations message, rename button (#6695)
* Improve styling of closed registrations message, rename button "Sign up on another server" Fix #6683 * Adjust styling of closed registrations message
Diffstat (limited to 'app/views/about')
-rw-r--r-- | app/views/about/_forms.html.haml | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/app/views/about/_forms.html.haml b/app/views/about/_forms.html.haml index 9916b6bf4..81f7173f7 100644 --- a/app/views/about/_forms.html.haml +++ b/app/views/about/_forms.html.haml @@ -1,12 +1,13 @@ - if @instance_presenter.open_registrations = render 'registration' - else - - if @instance_presenter.closed_registrations_message.blank? - %p= t('about.closed_registrations') - - else - = @instance_presenter.closed_registrations_message.html_safe + = link_to t('auth.register_elsewhere'), 'https://joinmastodon.org', class: 'button button-primary' - = link_to t('auth.register'), 'https://joinmastodon.org', class: 'button button-primary' + .closed-registrations-message + - if @instance_presenter.closed_registrations_message.blank? + %p= t('about.closed_registrations') + - else + = @instance_presenter.closed_registrations_message.html_safe .separator-or %span= t('auth.or') |