closed-registration.blade.php 686 B

12345678910111213141516
  1. @extends('layouts.app')
  2. @section('content')
  3. <div class="container">
  4. <div class="error-page py-5 my-5">
  5. <div class="card mx-5">
  6. <div class="card-body p-5 text-center">
  7. <h1>Registration is closed</h1>
  8. <p class="lead mb-0">We have closed registrations on this instance.</p>
  9. <hr>
  10. <p class="lead">You can find a list of active pixelfed instances on <a href="https://the-federation.info/pixelfed" rel="external nofollow noopener">https://the-federation.info/pixelfed</a> or <a href="https://fediverse.network/pixelfed" rel="external nofollow noopener">https://fediverse.network/pixelfed</a></p>
  11. </div>
  12. </div>
  13. </div>
  14. </div>
  15. @endsection