parental-controls.blade.php 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. @extends('site.help.partial.template', ['breadcrumb'=>'Parental Controls'])
  2. @section('section')
  3. <div class="title">
  4. <h3 class="font-weight-bold">Parental Controls</h3>
  5. </div>
  6. <hr>
  7. <p>In the digital age, ensuring your children's online safety is paramount. Designed with both fun and safety in mind, this feature allows parents to create child accounts, tailor-made for a worry-free social media experience.</p>
  8. <p class="font-weight-bold text-center">Key Features:</p>
  9. <ul>
  10. <li><strong>Child Account Creation</strong>: Easily set up a child account with just a few clicks. This account is linked to your own, giving you complete oversight.</li>
  11. <li><strong>Post Control</strong>: Decide if your child can post content. This allows you to ensure they're only sharing what's appropriate and safe.</li>
  12. <li><strong>Comment Management</strong>: Control whether your child can comment on posts. This helps in safeguarding them from unwanted interactions and maintaining a positive online environment.</li>
  13. <li><strong>Like & Share Restrictions</strong>: You have the power to enable or disable the ability to like and share posts. This feature helps in controlling the extent of your child's social media engagement.</li>
  14. <li><strong>Disable Federation</strong>: For added safety, you can choose to disable federation for your child's account, limiting their interaction to a more controlled environment.</li>
  15. </ul>
  16. <hr>
  17. <x-collapse title="How do I create a child account?">
  18. <div>
  19. @if(config('instance.parental_controls.enabled'))
  20. <ol>
  21. <li>Click <a href="/settings/parental-controls">here</a> and tap on the <strong>Add Child</strong> button in the bottom left corner</li>
  22. <li>Select the Allowed Actions, Enabled features and Preferences</li>
  23. <li>Enter your childs email address</li>
  24. <li>Press the <strong>Add Child</strong> buttton</li>
  25. <li>Open your childs email and tap on the <strong>Accept Invite</strong> button in the email, ensure your parent username is present in the email</li>
  26. <li>Fill out the child display name, username and password</li>
  27. <li>Press <strong>Register</strong> and your child account will be active!</li>
  28. </ol>
  29. @else
  30. <p>This feature has been disabled by server admins.</p>
  31. @endif
  32. </div>
  33. </x-collapse>
  34. @if(config('instance.parental_controls.enabled'))
  35. <x-collapse title="How many child accounts can I create/manage?">
  36. <div>
  37. You can create and manage up to <strong>{{ config('instance.parental_controls.limits.max_children') }}</strong> child accounts.
  38. </div>
  39. </x-collapse>
  40. @endif
  41. @endsection