BookStack/resources/views/mfa/setup.blade.php

19 lines
538 B
PHP
Raw Normal View History

2021-06-29 05:02:45 +08:00
@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>
2021-06-29 05:02:45 +08:00
</div>
</div>
@stop