mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-12-02 13:58:57 +08:00
f1f59cf086
Also aligned mfa method delete route to align with others.
19 lines
538 B
PHP
19 lines
538 B
PHP
@extends('simple-layout')
|
|
|
|
@section('body')
|
|
<div class="container small py-xl">
|
|
|
|
<div class="card content-wrap auto-height">
|
|
<h1 class="list-heading">{{ trans('auth.mfa_setup') }}</h1>
|
|
<p class="mb-none"> {{ trans('auth.mfa_setup_desc') }}</p>
|
|
|
|
<div class="setting-list">
|
|
@foreach(['totp', 'backup_codes'] as $method)
|
|
@include('mfa.setup-method-row', ['method' => $method])
|
|
@endforeach
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
@stop
|