@extends('layouts.app') @section('title', 'Two-Factor Authentication - IDN Menulis') @section('content')

Two-Factor Authentication

Tambahkan lapisan keamanan ekstra ke akun Anda

@if($enabled)

Two-Factor Authentication Aktif

Akun Anda dilindungi dengan verifikasi dua langkah.

@if(count($recoveryCodes) > 0)

Recovery Codes

Simpan kode-kode ini di tempat yang aman. Anda dapat menggunakan salah satu kode ini jika kehilangan akses ke aplikasi authenticator.

@foreach($recoveryCodes as $code) {{ $code }} @endforeach
@endif
@csrf @method('DELETE')
@error('password')

{{ $message }}

@enderror
@csrf
@else

Two-Factor Authentication Belum Aktif

Aktifkan untuk perlindungan ekstra terhadap akses tidak sah.

Cara Kerja 2FA

  1. Install aplikasi authenticator (Google Authenticator, Authy, dll)
  2. Scan QR code yang akan ditampilkan
  3. Masukkan kode 6 digit dari aplikasi untuk verifikasi
  4. Simpan recovery codes di tempat yang aman
Aktifkan Two-Factor Authentication @endif
@endsection