mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
20 lines
707 B
PHP
20 lines
707 B
PHP
|
<div class="setting-list-label">Mobile App</div>
|
||
|
|
||
|
<p class="small mb-m">
|
||
|
Enter the code, generated using your mobile app, below:
|
||
|
</p>
|
||
|
|
||
|
<form action="{{ url('/mfa/verify/totp') }}" method="post">
|
||
|
{{ csrf_field() }}
|
||
|
<input type="text"
|
||
|
name="code"
|
||
|
aria-labelledby="totp-verify-input-details"
|
||
|
placeholder="Provide your app generated code here"
|
||
|
class="input-fill-width {{ $errors->has('code') ? 'neg' : '' }}">
|
||
|
@if($errors->has('code'))
|
||
|
<div class="text-neg text-small px-xs">{{ $errors->first('code') }}</div>
|
||
|
@endif
|
||
|
<div class="mt-s text-right">
|
||
|
<button class="button">{{ trans('common.confirm') }}</button>
|
||
|
</div>
|
||
|
</form>
|