41 lines
1.3 KiB
PHP
41 lines
1.3 KiB
PHP
<x-action-section>
|
|
<x-slot name="title">
|
|
{{ __('Two Factor Authentication') }}
|
|
</x-slot>
|
|
|
|
<x-slot name="description">
|
|
{{ __('Add additional security to your account using two factor authentication.') }}
|
|
</x-slot>
|
|
|
|
<x-slot name="content">
|
|
<h3 class="text-lg font-medium text-gray-900">
|
|
{{ __('Finish enabling two factor authentication.') }}
|
|
|
|
</h3>
|
|
<div class="mt-3 max-w-xl text-sm text-gray-600">
|
|
<p>
|
|
{{ __('When two factor authentication is enabled, you will be prompted for a secure, random token during authentication. You may retrieve this token from your phone\'s Google Authenticator application.') }}
|
|
</p>
|
|
</div>
|
|
<div class="mt-4 max-w-xl text-sm text-gray-600">
|
|
<p class="font-semibold">
|
|
{{ __('some text') }}
|
|
</p>
|
|
</div>
|
|
|
|
<div class="grid gap-1 max-w-xl mt-4 px-4 py-4 font-mono text-sm bg-gray-100 rounded-lg"
|
|
wire:stream="output">{{ $output }}
|
|
</div>
|
|
<div class="mt-5">
|
|
<x-secondary-button class="mr-3" wire:click="start">
|
|
{{ $buttonText }}
|
|
</x-secondary-button>
|
|
</div>
|
|
</x-slot>
|
|
</x-action-section>
|
|
|
|
|
|
|
|
|
|
|