accessibility.blade.php 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. @extends('settings.template')
  2. @section('section')
  3. <div class="title">
  4. <h3 class="font-weight-bold">Accessibility</h3>
  5. </div>
  6. <hr>
  7. <form method="post">
  8. @csrf
  9. {{--<div class="form-check pb-3">
  10. <input class="form-check-input" type="checkbox" name="compose_media_descriptions" id="media_descriptions" {{$settings->compose_media_descriptions ? 'checked=""':''}} disabled>
  11. <label class="form-check-label font-weight-bold" for="compose_media_descriptions">
  12. {{__('Require media descriptions')}}
  13. </label>
  14. <p class="text-muted small help-text">Requires you to describe images for the visually impaired. <a href="#">Learn more</a>.</p>
  15. </div>
  16. <div class="form-check pb-3">
  17. <input class="form-check-input" type="checkbox" name="compose_media_descriptions" id="media_descriptions">
  18. <label class="form-check-label font-weight-bold" for="compose_media_descriptions">
  19. {{__('LiteUI')}}
  20. </label>
  21. <p class="text-muted small help-text">LiteUI is a lightweight, non-js design for low bandwidth devices. <a href="#">Learn more</a>.</p>
  22. </div> --}}
  23. <div class="form-check pb-3">
  24. <input class="form-check-input" type="checkbox" name="reduce_motion" id="reduce_motion" {{$settings->reduce_motion ? 'checked=""':''}}>
  25. <label class="form-check-label font-weight-bold" for="reduce_motion">
  26. {{__('Reduce Motion')}}
  27. </label>
  28. <p class="text-muted small help-text">Prevent animation effects.</p>
  29. </div>
  30. {{-- <div class="form-check pb-3">
  31. <input class="form-check-input" type="checkbox" name="optimize_screen_reader" id="optimize_screen_reader" {{$settings->optimize_screen_reader ? 'checked=""':''}}>
  32. <label class="form-check-label font-weight-bold" for="optimize_screen_reader">
  33. {{__('Enhanced Screen Reader Mode')}}
  34. </label>
  35. <p class="text-muted small help-text">Optimizes the experience for screen readers.</p>
  36. </div> --}}
  37. <div class="form-check pb-3">
  38. <input class="form-check-input" type="checkbox" name="high_contrast_mode" id="high_contrast_mode" {{$settings->high_contrast_mode ? 'checked=""':''}}>
  39. <label class="form-check-label font-weight-bold" for="high_contrast_mode">
  40. {{__('High Contrast Mode')}}
  41. </label>
  42. <p class="text-muted small help-text">High contrast mode for the visually impaired.</p>
  43. </div>
  44. <div class="form-check pb-3">
  45. <input class="form-check-input" type="checkbox" name="video_autoplay" id="video_autoplay" {{$settings->video_autoplay ? 'checked=""':''}}>
  46. <label class="form-check-label font-weight-bold" for="video_autoplay">
  47. {{__('Disable video autoplay')}}
  48. </label>
  49. <p class="text-muted small help-text">Prevent videos from autoplaying.</p>
  50. </div>
  51. <div class="form-group row mt-5 pt-5">
  52. <div class="col-12 text-right">
  53. <hr>
  54. <button type="submit" class="btn btn-primary font-weight-bold py-0 px-5">Submit</button>
  55. </div>
  56. </div>
  57. </form>
  58. @endsection