mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-12-15 15:44:03 +08:00
9b271e559f
- Restructured some of the route naming to be a little more consistent. - Moved the routes about to be more logically in one place. - Created a new middleware to handle the auth of people that should be allowed access to mfa setup routes, since these could be used by existing logged in users or by people needing to setup MFA on access. - Added testing to cover MFA setup required flow. - Added TTL and method tracking to session last-login tracking system.
19 lines
639 B
PHP
19 lines
639 B
PHP
<div class="setting-list-label">Backup Code</div>
|
|
|
|
<p class="small mb-m">
|
|
Enter one of your remaining backup codes below:
|
|
</p>
|
|
|
|
<form action="{{ url('/mfa/backup_codes/verify') }}" method="post">
|
|
{{ csrf_field() }}
|
|
<input type="text"
|
|
name="code"
|
|
placeholder="Enter backup 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> |