pixelfed/resources/views/site/help/instance-max-users.blade.php

21 wiersze
899 B
PHP

@extends('site.help.partial.template', ['breadcrumb'=>'Instance User Limit'])
@section('section')
<div class="title">
<h3 class="font-weight-bold">Instance User Limit</h3>
</div>
<hr>
@if(config('pixelfed.max_users'))
<p class="lead">We have a limit on how many users can join our instance to keep our community healthy.</p>
<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>
<p class="lead">Please try again later, or consider <a href="https://pixelfed.org/servers">joining a different Pixelfed instance</a>.</p>
@else
<p class="lead">We do not have a limit on how many users can join our instance.</p>
<p class="lead">If this instance isn't for you, consider <a href="https://pixelfed.org/servers">joining a different Pixelfed instance</a>.</p>
@endif
@endsection