1 @extends('simple-layout')
4 <div class="container very-small py-xl">
6 <div class="card content-wrap auto-height">
7 <h1 class="list-heading">Verify Access</h1>
9 Your user account requires you to confirm your identity via an additional level
10 of verification before you're granted access.
11 Verify using one of your configured methods to continue.
16 <h5>No Methods Configured</h5>
18 No multi-factor authentication methods could be found for your account.
19 You'll need to set up at least one method before you gain access.
22 <a href="{{ url('/mfa/verify/totp') }}" class="button outline">Configure</a>
26 <div class="setting-list">
27 <div class="grid half gap-xl">
29 <div class="setting-list-label">METHOD A</div>
35 <a href="{{ url('/mfa/verify/totp') }}" class="button outline">BUTTON</a>
41 @if(count($otherMethods) > 0)
43 @foreach($otherMethods as $otherMethod)
44 <a href="{{ url("/mfa/verify?method={$otherMethod}") }}">Use {{$otherMethod}}</a>