1
0

disabled-panel.blade.php 654 B

123456789101112131415161718
  1. <ul class="list-group">
  2. <li class="list-group-item bg-light">
  3. <div class="text-center py-5 px-4">
  4. <p class="text-muted">
  5. <i class="fas fa-lock fa-2x"></i>
  6. </p>
  7. <p class="text-muted h4 font-weight-bold">
  8. Two factor authentication is not enabled yet.
  9. </p>
  10. <p class="text-muted">
  11. Two-factor authentication adds an additional layer of security to your account by requiring more than just a password to log in. <a href="#">Learn more</a>.
  12. </p>
  13. <p class="mb-0">
  14. <a class="btn btn-success font-weight-bold" href="{{route('settings.security.2fa.setup')}}">Enable two-factor authentication</a>
  15. </p>
  16. </div>
  17. </li>
  18. </ul>