instance-max-users.blade.php 899 B

1234567891011121314151617181920
  1. @extends('site.help.partial.template', ['breadcrumb'=>'Instance User Limit'])
  2. @section('section')
  3. <div class="title">
  4. <h3 class="font-weight-bold">Instance User Limit</h3>
  5. </div>
  6. <hr>
  7. @if(config('pixelfed.max_users'))
  8. <p class="lead">We have a limit on how many users can join our instance to keep our community healthy.</p>
  9. <p class="lead">If you have been redirected to this page, that means we've reached our user limit or we are not accepting new account registrations at this time.</p>
  10. <p class="lead">Please try again later, or consider <a href="https://pixelfed.org/servers">joining a different Pixelfed instance</a>.</p>
  11. @else
  12. <p class="lead">We do not have a limit on how many users can join our instance.</p>
  13. <p class="lead">If this instance isn't for you, consider <a href="https://pixelfed.org/servers">joining a different Pixelfed instance</a>.</p>
  14. @endif
  15. @endsection