unavailable.blade.php 970 B

12345678910111213141516171819202122232425
  1. @extends('layouts.app')
  2. @section('content')
  3. <div class="container d-flex justify-content-center">
  4. <div class="error-page py-5 my-5" style="max-width: 450px;">
  5. <h3 class="font-weight-bold">Group Unavailable</h3>
  6. <p class="lead">The group you are trying to view is unavailable</p>
  7. <div class="text-muted">
  8. <p class="pt-4 mb-1">This can happen for a few reasons:</p>
  9. <ul>
  10. <li>The group url is invalid or has a typo</li>
  11. <li>We are experiencing higher than usual traffic to this group and have temporarily limited access to this group</li>
  12. <li>The group has been flagged for review by our automated abuse detection systems</li>
  13. <li>The group is temporarily disabled by group administrators</li>
  14. <li>The group has been deleted</li>
  15. </ul>
  16. <p class="pt-4">
  17. If you are a group administrator, you can view your <a href="#" class="font-weight-bold">groups settings</a> for more information.
  18. </p>
  19. </div>
  20. </div>
  21. </div>
  22. @endsection